Find and replace a character in a string in Go
String manipulation functions are a must have for a programming language and Go has plenty of them. In this tutorial we will see how to find and replace characters in a string.
strings.Replace() function will take in 4 parameters.
- First is the input string.
- Second is characters or words to find
- Third is the new replacement
- Fourth is the number ( n ) of instances found and to be replaced.
If n < 0, there is no limit on the number of replacements.
To find and replace white spaces from a string
str := " This string has many spaces that need to be replaced "
fmt.Println(strings.Replace(str, " ", "", -1))
because we want to remove unlimited instances of spaces in the string. We will use -1 as the fourth parameter. You can use -20 or -5 if you want. Remember the rule :
If n < 0, there is no limit on the number of replacements.
The above code output will be :
Thisstringhasmanyspacesthatneedtobereplaced
Full example code :
package main
import (
"fmt"
"strings"
)
func main() {
str := " This string has many many spaces that need to be replaced "
fmt.Println(strings.Replace(str, " ", "", -1))
str2 := " This string has much much spaces that need to be replaced "
fmt.Println(strings.Replace(str2, "much", "many", 2))
}
output :
Thisstringhasmanymanyspacesthatneedtobereplaced
This string has many many spaces that need to be replaced
Reference :
See also : Golang :Trim white spaces from a string
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
+11.1k Golang : Byte format example
+33.7k Golang : Create x509 certificate, private and public keys
+9k Golang : Create and shuffle deck of cards example
+13.1k Golang : Generate Code128 barcode
+52.1k Golang : How to get struct field and value by name
+11.4k Golang : Secure file deletion with wipe example
+14.3k Golang : GUI with Qt and OpenCV to capture image from camera
+7.2k Golang : Word limiter example
+7.3k Android Studio : AlertDialog to get user attention example
+19.3k Golang : Example for DSA(Digital Signature Algorithm) package functions
+6.6k Android Studio : Hello World example
+8k Prevent Write failed: Broken pipe problem during ssh session with screen command