- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for ExampleToUpperSpecial (0.14 sec)
-
src/bytes/example_test.go
// Output: // Original : AHOJ VÝVOJÁRİ GOLANG // ToLower : ahoj vývojári golang } func ExampleToUpper() { fmt.Printf("%s", bytes.ToUpper([]byte("Gopher"))) // Output: GOPHER } func ExampleToUpperSpecial() { str := []byte("ahoj vývojári golang") totitle := bytes.ToUpperSpecial(unicode.AzeriCase, str) fmt.Println("Original : " + string(str)) fmt.Println("ToUpper : " + string(totitle)) // Output:
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 07 17:22:36 UTC 2024 - 14.9K bytes - Viewed (0)