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
+17.5k Golang : Find smallest number in array
+7.1k Nginx : How to block user agent ?
+33.6k Golang : How to check if slice or array is empty?
+16.8k Golang : Read integer from file into array
+16.3k Golang : How to extract links from web page ?
+15.3k Golang : Delete certain files in a directory
+12k Golang : Find and draw contours with OpenCV example
+16.9k Golang : Set up source IP address before making HTTP request
+20.8k Golang : Underscore or snake_case to camel case example
+24.6k Golang : How to print rune, unicode, utf-8 and non-ASCII CJK(Chinese/Japanese/Korean) characters?