The ability to read (and write) a text file into and out of a string array is I believe a fairly common requirement. It is also quite useful when starting with a language removing the need initially to access a database. Does one exist in golang?
eg. func ReadLines(sFileName string, iMinLines int) ([]string, bool) { and func WriteLines(saBuff[]string, sFilename string) (bool) {. I would prefer to use an existing one rather than duplicate.
|
|
||||
|
|
|
Cannot update first answer. Anyway, after go1 release, there are some breaking changes, so I updated as shown below
|
||||
|
|
|
If the file isn't too large, this can be done with the
You can read the documentation on ioutil and strings packages. |
|||||
|
|
You can use os.File (which implements the io.Reader interface) with the bufio package for that. However, those packages are build with fixed memory usage in mind (no matter how large the file is) and are quite fast. Unfortunately this makes reading the whole file into the memory a bit more complicated. You can use a bytes.Buffer to join the parts of the line if they exceed the line limit. Anyway, I recommend you to try to use the line reader directly in your project (especially if do not know how large the text file is!). But if the file is small, the following example might be sufficient for you:
Another alternative might be to use io.ioutil.ReadAll to read in the complete file at once and do the slicing by line afterwards. I don't give you an explicit example of how to write the lines back to the file, but that's basically an |
|||||||||||
|