Función fmt.Fscanln() en Golang con ejemplos

En el lenguaje Go, el paquete fmt implementa E/S formateadas con funciones análogas a las funciones printf() y scanf() de C. La función fmt.Fscanln() en el lenguaje Go escanea el texto especificado, lee desde r y luego almacena valores sucesivos separados por espacios en argumentos sucesivos. Esta función deja de escanear en una nueva línea y después del elemento final, debe haber una nueva línea o EOF. Además, esta función está definida en el paquete fmt. Aquí, debe importar el paquete «fmt» para usar estas funciones.

Sintaxis:

func Fscanln(r io.Reader, a ...interface{}) (n int, err error)

Parámetros: Esta función acepta dos parámetros que se ilustran a continuación:

  • r io.Reader: este parámetro contiene los textos especificados escaneados.
  • una …interfaz{}: estos parámetros aceptan cada uno de los elementos especificados.

Devoluciones: Devuelve la cantidad de elementos escaneados con éxito.

Ejemplo 1:

// Golang program to illustrate the usage of
// fmt.Fscanln() function
  
// Including the main package
package main
  
// Importing fmt, io and strings
import (
    "fmt"
    "io"
    "strings"
)
  
// Calling main
func main() {
  
    // Declaring list of strings,
    // integers and float value
    s := `gfg 9`
  
    // Calling NewReader() function for
    // reading each elements of the list
    // and then it place it into "r"
    r := strings.NewReader(s)
  
    // Declaring different types of variables
    var a string
    var b int
  
    for {
  
        // Calling Fscanln() function
        n, err := fmt.Fscanln(r, &a, &b)
  
        // Checking returned error is
        // end of the line (EOF) or not
        if err == io.EOF {
            break
        }
  
        // Checking if there is any error
        if err != nil {
            panic(err)
        }
  
        // Printing the number of items successfully
        // scanned and each elements too
        fmt.Printf("%d: %s, %d", n, a, b)
    }
}

Producción:

2: gfg, 9

Ejemplo 2:

// Golang program to illustrate the usage of
// fmt.Fscanln() function
  
// Including the main package
package main
  
// Importing fmt, io and strings
import (
    "fmt"
    "io"
    "strings"
)
  
// Calling main
func main() {
  
    // Declaring list of strings,
    // integers and float value
    s := `gfg 9 true 5.78`
  
    // Calling NewReader() function for
    // reading each elements of the list
    // and then it place it into "r"
    r := strings.NewReader(s)
  
    // Declaring different types of variables
    var a string
    var b int
    var c bool
    var d float32
  
    for {
  
        // Calling Fscanln() function
        n, err := fmt.Fscanln(r, &a, &b, &c, &d)
  
        // Checking returned error is
        // end of the line (EOF) or not
        if err == io.EOF {
            break
        }
  
        // Checking if there is any error
        if err != nil {
            panic(err)
        }
  
        // Printing the number of items successfully
        // scanned and each elements too
        fmt.Printf("%d: %s, %d, %t, %g", n, a, b, c, d)
    }
}

Producción:

4: gfg, 9, true, 5.78

Publicación traducida automáticamente

Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *