Golang unicode.ToTitle() function example
package unicode
Golang unicode.ToTitle() function usage example.
package main
import (
"fmt"
"unicode"
)
func main() {
TitleCaseRune := unicode.ToTitle('a')
fmt.Printf("%+q\n", TitleCaseRune)
}
Reference :
Advertisement
Something interesting
Tutorials
+16.3k Golang : How to extract links from web page ?
+31.1k Golang : Calculate percentage change of two values
+5.9k Golang : Extract unicode string from another unicode string example
+5.7k Get website traffic ranking with Similar Web or Alexa
+25.5k Golang : Generate MD5 checksum of a file
+14.6k Golang : Send email with attachment(RFC2822) using Gmail API example
+5.6k Python : Print unicode escape characters and string
+30.8k Golang : Download file example
+6.5k Elasticsearch : Shutdown a local node
+14.3k Golang : How to shuffle elements in array or slice?
+12.9k Golang : Convert IPv4 address to packed 32-bit binary format
+12.3k Golang : How to display image file or expose CSS, JS files from localhost?