Golang : How to remove certain lines from a file
Alright, here is a simple tutorial on how to remove certain lines of data from a file. There are times due to some unforeseen reasons, some files that got downloaded contain more data that what was needed, such as extra HTTP request header information at the beginning of it.
So, how does one go around deleting those unwanted information?
The solution to this problem is similar to copying a file to a new file except that the unwanted data are omitted out during the copying process. For the code example below, we are going to remove the unwanted data at the beginning of the file simply be ignoring those lines. Once a marker %startHERE
is detected, then only we start reading the rest of the data.
Here you go!
NOTE: For simplicity sake, we will use corruptFile constant to mimic a file. For your own production use, uncomment those lines to read from an actual file.
package main
import (
"fmt"
//"io/ioutil"
//"os"
"strings"
)
const corruptFile = `HTTP 2.0 OK
Content-Length :123456
%startHERE
some real data bytes
more bytes`
func main() {
// UNCOMMENT these lines to read in from an actual file instead.
//if len(os.Args) <= 1 {
// fmt.Printf("USAGE : %s <target_filename> \n", os.Args[0])
// os.Exit(0)
//}
//fileName := os.Args[1]
//fileBytes, err := ioutil.ReadFile(fileName)
//if err != nil {
// fmt.Println(err)
// os.Exit(1)
//}
//lines := strings.Split(string(fileBytes), "\n")
lines := strings.Split(string(corruptFile), "\n")
startPrint := false
for i, line := range lines {
// only print after %startHERE
if equal := strings.Index(line, "%startHERE"); equal > 0 {
startPrint = true
}
if startPrint {
fmt.Println(i, line)
// instead of printing to the screen, this is where
// you want to start writing to a new file a.k.a copying the file
// how it is done at https://www.socketloop.com/tutorials/golang-simple-file-scaning-and-remove-virus-example
}
}
}
Hope this helps and happy coding!
See also : Golang : Display a text file line by line with line number example
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
+15.6k Golang : Find location by IP address and display with Google Map
+26.2k Mac/Linux and Golang : Fix bind: address already in use error
+21k Golang : Convert PNG transparent background image to JPG or JPEG image
+5.4k Python : Create Whois client or function example
+15.4k Golang : Save(pipe) HTTP response into a file
+15k Golang : Find commonalities in two slices or arrays example
+4.8k Linux/MacOSX : How to symlink a file?
+12.6k Golang : Search and extract certain XML data example
+6.1k Linux/MacOSX : Search for files by filename and extension with find command
+15.4k Golang : How to check if IP address is in range
+18.1k Golang : Simple client server example
+14.9k Golang : Send email with attachment(RFC2822) using Gmail API example