在 Go 语言中, fmt包使用类似于 C 的 printf() 和 scanf()函数的函数来实现格式化的 I/O。 Go 语言中的fmt.Sscanln()函数扫描指定的字符串并将连续的空格分隔值存储到连续的参数中。此函数在换行符处停止扫描,在最后一项之后,必须有一个换行符或 EOF。而且,这个函数是在 fmt 包下定义的。在这里,您需要导入“fmt”包才能使用这些功能。
句法:
func Sscanln(str string, a ...interface{}) (n int, err error)
参数:此函数接受两个参数,如下所示:
- str 字符串:此参数包含要扫描的指定文本。
- a …interface{}:这个参数接收字符串的每个元素。
返回:它返回成功扫描的项目数。
示例 1:
// Golang program to illustrate the usage of
// fmt.Sscanln() function
// Including the main package
package main
// Importing fmt
import (
"fmt"
)
// Calling main
func main() {
// Declaring some variables
var name string
var alphabet_count int
// Calling Sscanln() function
n, err := fmt.Sscanln("GFG 3", &name, &alphabet_count)
// Checking if the function
// returns any error
if err != nil {
panic(err)
}
// Printing the number of elements
// present in the specified string
// and also the elements
fmt.Printf("n: %d, name: %s, alphabet_count: %d",
n, name, alphabet_count)
}
输出:
n: 2, name: GFG, alphabet_count: 3
示例 2:
// Golang program to illustrate the usage of
// fmt.Sscanln() function
// Including the main package
package main
// Importing fmt
import (
"fmt"
)
// Calling main
func main() {
// Declaring some variables
var name string
var alphabet_count int
// Calling Sscanln() function
fmt.Sscanln("GFG \n 3", &name, &alphabet_count)
// Printing the elements of the string
fmt.Printf("name: %s, alphabet_count: %d", name, alphabet_count)
}
输出:
name: GFG, alphabet_count: 0
在上面的例子中,可以看出,alphabet_count 的赋值为 3 仍然输出为 0 这是因为在两个元素“GFG”和“alphabet_count”之间有新行(\n),因此该函数停止换行扫描。