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
+9.2k Golang : Extract or copy items from map based on value
+21.4k Golang : Setting up/configure AWS credentials with official aws-sdk-go
+5.5k Unix/Linux : How to test user agents blocked successfully ?
+12.3k Golang : Remove or trim extra comma from CSV
+7.8k Golang : Multiplexer with net/http and map
+8.9k Golang : Generate Codabar
+7.6k Swift : Convert (cast) String to Double
+4.4k Linux : sudo yum updates not working
+5k Golang : Get FX sentiment from website example
+27.1k Golang : Convert integer to binary, octal, hexadecimal and back to integer
+31.7k Golang : Validate email address with regular expression
+17.5k Golang : Simple client server example