Golang : Underscore string example
Problem:
Your program needs to process data with whitespaces and quotes. You need a quick way to remove underscore characters from a string's start and end positions. You also want to replace white spaces and quotes to underscore "_
".
How to do that?
Solution:
Here you go!
package main
import (
"fmt"
"regexp"
"strings"
)
func UnderScoreString(str string) string {
// convert every letter to lower case
newStr := strings.ToLower(str)
// convert all spaces/tab to underscore
regExp := regexp.MustCompile("[[:space:][:blank:]]")
newStrByte := regExp.ReplaceAll([]byte(newStr), []byte("_"))
regExp = regexp.MustCompile("`[^a-z0-9]`i")
newStrByte = regExp.ReplaceAll(newStrByte, []byte("_"))
regExp = regexp.MustCompile("[!/']")
newStrByte = regExp.ReplaceAll(newStrByte, []byte("_"))
// and remove underscore from beginning and ending
newStr = strings.TrimPrefix(string(newStrByte), "_")
newStr = strings.TrimSuffix(newStr, "_")
return newStr
}
func main() {
test := "That is Peter's House"
fmt.Println(UnderScoreString(test))
test1 := "Peter's House!"
fmt.Println(UnderScoreString(test1))
test2 := "_88 is Peter's House number_"
fmt.Println(UnderScoreString(test2))
}
Output :
that_is_peter_s_house
peter_s_house
88_is_peter_s_house_number
Reference:
https://www.socketloop.com/tutorials/golang-format-strings-to-seo-friendly-url-example
See also : Golang : Format strings to SEO friendly URL 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
+22.6k Golang : Round float to precision example
+13.8k Golang : Get dimension(width and height) of image file
+8k Golang : Variadic function arguments sanity check example
+6.7k Golang : Get expvar(export variables) to work with multiplexer
+6k PageSpeed : Clear or flush cache on web server
+20.2k Golang : Check if os.Stdin input data is piped or from terminal
+6k Javascript : Get operating system and browser information
+9.9k Golang : Translate language with language package example
+8k Golang : HTTP Server Example
+12.1k Golang : md5 hash of a string
+30.5k Golang : Remove characters from string example
+21.7k Golang : Upload big file (larger than 100MB) to AWS S3 with multipart upload