在 Go 语言中, fmt包使用类似于 C 的 printf() 和 scanf()函数的函数来实现格式化的 I/O。 Go 语言中的fmt.Sprintf()函数根据格式说明符格式化并返回结果字符串。而且,这个函数是在 fmt 包下定义的。在这里,您需要导入“fmt”包才能使用这些功能。
句法:
func Sprintf(format string, a ...interface{}) string
参数:此函数接受两个参数,如下所示:
- 格式字符串:这包括一些变量和一些字符串。
- a …interface{}:这是指定的常量变量。
返回:它返回结果字符串。
示例 1:
// Golang program to illustrate the usage of
// fmt.Sprintf() function
// Including the main package
package main
// Importing fmt, io and os
import (
"fmt"
"io"
"os"
)
// Calling main
func main() {
// Declaring some const variables
const name, dept = "GeeksforGeeks", "CS"
// Calling Sprintf() function
s := fmt.Sprintf("%s is a %s Portal.\n", name, dept)
// Calling WriteString() function to write the
// contents of the string "s" to "os.Stdout"
io.WriteString(os.Stdout, s)
}
输出:
GeeksforGeeks is a CS Portal.
示例 2:
// Golang program to illustrate the usage of
// fmt.Sprintf() function
// Including the main package
package main
// Importing fmt, io and os
import (
"fmt"
"io"
"os"
)
// Calling main
func main() {
// Declaring some const variables
const num1, num2, num3 = 5, 10, 15
// Calling Sprintf() function
s := fmt.Sprintf("%d + %d = %d", num1, num2, num3)
// Calling WriteString() function to write the
// contents of the string "s" to "os.Stdout"
io.WriteString(os.Stdout, s)
}
输出:
5 + 10 = 15