Golang : Replace a parameter's value inside a configuration file example
Alright, putting this here for my own future reference. In this tutorial, we will explore how to read in a configuration(text) file, replace certain value of a parameter and write it back(update) into the file.
Basically, what this simple program does is to convert the entire configuration(text) file into a slice, scan for the parameter that we want to alter, update the parameter's value and write back to file.
Here you go!
package main
import (
"fmt"
"strings"
)
func main() {
input, err := ioutil.ReadFile(configFilename)
if err != nil {
log.Println(err)
}
// split into a slice
lines := strings.Split(string(input), "\n")
fmt.Println("before : ", lines)
// assuming that we want to change the value of thirdItem from 3 to 100
replacementText := "thirdItem = 100"
for i, line := range lines {
if equal := strings.Index(line, "thirdItem"); equal == 0 {
// update to the new value
lines[i] = replacementText
}
}
fmt.Println("after : ", lines)
// join back before writing into the file
linesBytes := []byte(strings.Join(lines, "\n"))
//the value will be UPDATED!!!
if err = ioutil.WriteFile(configFilename, linesBytes, 0666); err != nil {
log.Println(err)
}
}
You can play with a demo without modifying any file at https://play.golang.org/p/G8RKWdfh5hu
Hope this helps and happy coding!
References :
https://www.socketloop.com/references/golang-io-ioutil-writefile-function-example
https://www.socketloop.com/tutorials/golang-convert-string-to-byte-examples
See also : Golang : How to remove certain lines from a 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
+6.3k Golang : Combine slices of complex numbers and operation example
+11.3k Golang : Simple file scaning and remove virus example
+6.6k Default cipher that OpenSSL used to encrypt a PEM file
+32.4k Golang : Regular Expression for alphanumeric and underscore
+8.5k Golang : Find duplicate files with filepath.Walk
+5.8k Fontello : How to load and use fonts?
+13.2k Facebook PHP getUser() returns 0
+14.6k Golang : Basic authentication with .htpasswd file
+13.3k Golang : Get user input until a command or receive a word to stop
+13.2k Golang : Count number of runes in string
+14.9k Golang : Accurate and reliable decimal calculations
+22.3k Generate checksum for a file in Go