Write string slice line by line to a text file
The bufio package provides an efficient buffered
Writer
which queues up bytes until a threshold is reached and then finishes the write operation to a file with minimum resources. The following source code snippet shows writing a string slice to a plain text file line-by-line.
Example
package main
import (
"bufio"
"log"
"os"
)
func main() {
sampledata := []string{"Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
"Nunc a mi dapibus, faucibus mauris eu, fermentum ligula.",
"Donec in mauris ut justo eleifend dapibus.",
"Donec eu erat sit amet velit auctor tempus id eget mauris.",
}
file, err := os.OpenFile("test.txt", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
if err != nil {
log.Fatalf("failed creating file: %s", err)
}
datawriter := bufio.NewWriter(file)
for _, data := range sampledata {
_, _ = datawriter.WriteString(data + "\n")
}
datawriter.Flush()
file.Close()
}
Most Helpful This Week
Interface Accepting Address of the Variable in Golang
Cannot call non-function <variable> error in Golang
Top Programming Languages Behind Blockchain App Development
Contains, ContainsAny, Count and EqualFold string functions in Go Language
Golang program for implementation of Insertion Sort
Golang program to generate number of slices permutations of number entered by user