Golang unicode.ToLower() function example
package unicode
Golang unicode.ToLower() function usage example
package main
import (
"fmt"
"unicode"
)
func main() {
LowerCaseRune := unicode.ToLower('A')
fmt.Printf("%+q\n", LowerCaseRune)
}
Output :
'a'
Reference :
Advertisement
Something interesting
Tutorials
+13.6k Facebook PHP getUser() returns 0
+5.9k Golang : Fix opencv.LoadHaarClassifierCascade The node does not represent a user object error
+6.1k PHP : How to check if an array is empty ?
+15.2k Golang : package is not in GOROOT during compilation
+9k Golang : What is the default port number for connecting to MySQL/MariaDB database ?
+28k Golang : Decode/unmarshal unknown JSON data type with map[string]interface
+10.3k Golang : Random Rune generator
+21.6k Golang : How to read float value from standard input ?
+8k Javascript : How to check a browser's Do Not Track status?
+41.1k Golang : How to check if a string contains another sub-string?
+14.9k Golang : Find commonalities in two slices or arrays example