Golang : Read a text file and replace certain words
Problem :
You have a text file with some words that you need to replace with another word.
Solution :
Use the bytes.Replace()
function. For example :
package main
import (
"bytes"
"fmt"
"io/ioutil"
"os"
)
func main() {
input, err := ioutil.ReadFile("original.txt")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
output := bytes.Replace(input, []byte("replaceme"), []byte("ok"), -1)
if err = ioutil.WriteFile("modified.txt", output, 0666); err != nil {
fmt.Println(err)
os.Exit(1)
}
}
original.txt
this is a text file that contains couple of replaceme words that need to be replaced.
for example, a replaceme word in this line
and another [replaceme] word in this line too
and after executing the above code
modified.txt
this is a text file that contains couple of ok words that need to be replaced.
for example, a ok word in this line
and another [ok] word in this line too
See also : Golang : Read file
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
+7.8k Golang : Mapping Iban to Dunging alphabets
+21.9k Golang : Setting up/configure AWS credentials with official aws-sdk-go
+14.9k Golang : Normalize unicode strings for comparison purpose
+16.8k Golang : Gzip file example
+13.6k Golang : How to get year, month and day?
+16.4k Golang : convert string or integer to big.Int type
+14.2k Golang : Fix cannot use buffer (type bytes.Buffer) as type io.Writer(Write method has pointer receiver) error
+4.9k Which content-type(MIME type) to use for JSON data
+9.6k Golang : Extract or copy items from map based on value
+13.7k Golang : reCAPTCHA example
+6k Golang : Use NLP to get sentences for each paragraph example
+9.4k Golang : How to get ECDSA curve and parameters data?