Golang : Humanize and Titleize functions
Humanize function takes multiple words separated by a given separator and changes them to spaces. Titleize converts a given string into a proper title with each word starting character in upper case.
Here you go!
package main
import (
"fmt"
"strings"
"unicode"
)
func Titleize(input string) (titleized string) {
isToUpper := false
for k, v := range input {
if k == 0 {
titleized = strings.ToUpper(string(input[0]))
} else {
if isToUpper || unicode.IsUpper(v) {
titleized += " " + strings.ToUpper(string(v))
isToUpper = false
} else {
if (v == '_') || (v == ' ') {
isToUpper = true
} else {
titleized += string(v)
}
}
}
}
return
}
func Humanize(input string, separator string) (humanized string) {
// Takes multiple words separated by the separator and changes them to spaces
for k, v := range input {
if k == 0 {
humanized = strings.ToUpper(string(input[0]))
} else {
if string(v) == separator {
humanized += string(" ")
} else {
humanized += string(v)
}
}
}
return
}
func main() {
// separator is _, convert to spaces
fmt.Println(Humanize("the_big_boss", "_"))
// separator is already spaces
fmt.Println(Humanize("big boss", " "))
// separator is +
fmt.Println(Humanize("big+boss", "+"))
fmt.Println(Titleize("nab that guy"))
fmt.Println(Titleize("NabThatGuy"))
fmt.Println(Titleize("space-marinesKillAliens"))
fmt.Println(Titleize("raiders_of_the_lost_ark"))
}
Output:
The big boss
Big boss
Big boss
Nab That Guy
Nab That Guy
Space-marines Kill Aliens
Raiders Of The Lost Ark
See also : Golang : Ordinal and Ordinalize a given number to the English ordinal numeral
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 : Simple image viewer with Go-GTK
+22k Fix "Failed to start php5-fpm.service: Unit php5-fpm.service is masked."
+19.5k Golang : How to Set or Add Header http.ResponseWriter?
+55.3k Golang : Unmarshal JSON from http response
+8.8k Golang : Executing and evaluating nested loop in html template
+31.5k Golang : Example for ECDSA(Elliptic Curve Digital Signature Algorithm) package functions
+8.5k Golang : Add text to image and get OpenCV's X, Y co-ordinates example
+13.5k Golang : Count number of runes in string
+10k Golang : Channels and buffered channels examples
+21.7k SSL : How to check if current certificate is sha1 or sha2
+11.1k Golang : Roll the dice example