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
+12.3k Golang : Validate email address
+21.3k Golang : Create and resolve(read) symbolic links
+6.3k Apt-get to install and uninstall Golang
+5.4k Golang : Qt update UI elements with core.QCoreApplication_ProcessEvents
+7.7k Golang : Mapping Iban to Dunging alphabets
+27.9k Golang : Decode/unmarshal unknown JSON data type with map[string]interface
+5.3k Swift : Convert string array to array example
+10.1k Golang : Check a web page existence with HEAD request example
+16.3k Golang : How to extract links from web page ?
+13.5k Golang : How to get year, month and day?
+6.4k Golang : Break string into a slice of characters example