VOOZH about

URL: https://www.geeksforgeeks.org/go-language/fmt-sscan-function-in-golang-with-examples/

⇱ fmt.Sscan() Function in Golang With Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

fmt.Sscan() Function in Golang With Examples

Last Updated : 5 May, 2020
In Go language, fmt package implements formatted I/O with functions analogous to C's printf() and scanf() function. The fmt.Sscan() function in Go language scans the specified texts and store the successive space-separated texts into successive arguments. Moreover, this function is defined under the fmt package. Here, you need to import the "fmt" package in order to use these functions. Syntax:
func Sscan(str string, a ...interface{}) (n int, err error)
Parameters: This function accepts two parameters which are illustrated below:
  • str string: This parameter contains the specified text which is going to be scanned.
  • a ...interface{}: This parameter receives each texts.
Returns: It returns the number of items successfully scanned. Example 1: Output:
2: GFG, 3
Example 2: Output:
4: GeeksforGeeks, 13, 6.7, true
Comment
Article Tags:

Explore