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
+14k Golang : Parsing or breaking down URL
+11.7k Golang : convert(cast) string to integer value
+4.6k Golang : Calculate a pip value and distance to target profit example
+8.6k Golang : What is the default port number for connecting to MySQL/MariaDB database ?
+15.5k Golang : Generate universally unique identifier(UUID) example
+14.5k Golang : package is not in GOROOT during compilation
+8k Golang : Convert word to its plural form example
+8.4k Golang : Take screen shot of browser with JQuery example
+12.9k Golang : Generate Code128 barcode
+5.6k AWS S3 : Prevent Hotlinking policy
+7.5k Golang : Sort words with first uppercase letter