Golang unicode.ToUpper() function example
package unicode
Golang unicode.ToUpper() function usage example
package main
import (
"fmt"
"unicode"
)
func main() {
UpperCaseRune := unicode.ToUpper('a')
fmt.Printf("%+q\n", UpperCaseRune)
}
Reference :
Advertisement
Something interesting
Tutorials
+9.2k Golang : Generate Codabar
+7.2k Golang : Check if one string(rune) is permutation of another string(rune)
+21.4k Curl usage examples with Golang
+16.3k Golang : How to extract links from web page ?
+14.6k Golang : Convert(cast) int to float example
+11.2k Golang : How to pipe input data to executing child process?
+19.6k Golang : Get current URL example
+4.6k JavaScript : Rounding number to decimal formats to display currency
+55.3k Golang : Unmarshal JSON from http response
+9.5k Golang : Changing a RGBA image number of channels with OpenCV
+6.1k Golang : Grab news article text and use NLP to get each paragraph's sentences
+6.7k Golang : Skip or discard items of non-interest when iterating example