字符串.ToUpperSpecial() Golang 中的函数用于返回字符串s 的副本,其中使用 c 指定的大小写映射将所有 Unicode 字母映射到它们的大写。
句法:
func ToUpperSpecial(c unicode.SpecialCase, s string) string
这里, c 是 case 映射, s 是指定的字符串。
示例 1:
// Golang program to illustrate
// the strings.ToUpperSpecial Function
package main
import (
"fmt"
"strings"
"unicode"
)
func main() {
// using the function
fmt.Println(strings.ToUpperSpecial(unicode.TurkishCase, "Hello, Geeks"))
}
输出:
HELLO, GEEKS
示例 2:
// Golang program to illustrate
// the strings.ToUpperSpecial Function
package main
import (
"fmt"
"strings"
"unicode"
)
func main() {
// using the function
fmt.Println(strings.ToUpperSpecial(unicode.TurkishCase, "Computer Portal"))
}
输出:
COMPUTER PORTAL