Answers for "read contents of a file and convert to list + go"

Go
0

read contents of a file and convert to list + go

content, err := ioutil.ReadFile(filename)
if err != nil {
    //Do something
}
lines := strings.Split(string(content), "\n")
Posted by: Guest on August-05-2020

Code answers related to "read contents of a file and convert to list + go"

Browse Popular Code Answers by Language