Golang : Read integer from file into array
This tutorial will demonstrate how to read a file with integer values into array. Let say nums.txt
is a file with integer values of :
100
101
102
103
104
105
106
107
108
This code below will read the integer line by line and store the values into array.
package main
import (
"fmt"
"io"
"os"
)
func main() {
file, err := os.Open("nums.txt")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
var perline int
var nums []int
for {
_, err := fmt.Fscanf(file, "%d\n", &perline) // give a patter to scan
if err != nil {
if err == io.EOF {
break // stop reading the file
}
fmt.Println(err)
os.Exit(1)
}
nums = append(nums, perline)
}
// print out the nums array content
fmt.Println(nums)
}
Output :
[100 101 102 103 104 105 106 107 108]
Hope that this simple tutorial can be useful to you.
See also : Golang : Convert file content into array of bytes
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+11.1k Nginx : TLS 1.2 support
+5.7k Clean up Visual Studio For Mac installation failed disk full problem
+7.7k Golang : Rename part of filename
+7.9k Golang : Scan files for certain pattern and rename part of the files
+5.1k JQuery : Calling a function inside Jquery(document) block
+8.5k Golang : Configure Apache and NGINX to access your Go service example
+7.6k Golang : Convert source code to assembly language
+9.6k Golang : Timeout example
+21.7k Curl usage examples with Golang
+10.8k Golang : Create matrix with Gonum Matrix package example
+25.9k Golang : missing Mercurial command
+21.5k Golang : Create and resolve(read) symbolic links