Rune 是 ASCII 的超集或者是 int32 的别名。它包含世界书写系统中可用的所有字符,包括重音符号和其他变音符号、制表符和回车符等控制代码,并为每个字符分配一个标准编号。这个标准数字在 Go 语言中被称为 Unicode 代码点或符文。
您可以在To()函数的帮助下将符文映射到指定的案例。此函数根据您的要求将给定符文的大小写更改为小写、大写或标题大小写。如果给定的符文已经存在于指定的 case 中,那么这个函数什么都不做。这个函数是在Unicode包下定义的,所以为了访问这个方法,你需要在你的程序中导入Unicode包。
句法:
func To(_case int, r rune) rune
示例 1:
// Go program to illustrate how to
// map a rune to the specified case
package main
import (
"fmt"
"unicode"
)
// Main function
func main() {
// Creating rune
rune_1 := 'g'
rune_2 := 'e'
// Mapping the given rune
// into the specified case
// Using To() function
fmt.Printf("Result 1: %c ", unicode.To(unicode.UpperCase, rune_1))
fmt.Printf("\nResult 2: %c ", unicode.To(unicode.TitleCase, rune_2))
}
输出:
Result 1: G
Result 2: E
示例 2:
// Go program to illustrate how to
// map a rune to the specified case
package main
import (
"fmt"
"unicode"
)
// Main function
func main() {
// Creating rune
rune_1 := 'E'
rune_2 := 'K'
// Mapping the given rune
// into the specified case
// Using To() function
fmt.Printf("\nResult 1: %c ", unicode.To(unicode.LowerCase, rune_1))
fmt.Printf("\nResult 2: %c ", unicode.To(unicode.TitleCase, rune_2))
fmt.Printf("\nResult 3: %c ", unicode.To(unicode.UpperCase, 's'))
}
输出:
Result 1: e
Result 2: K
Result 3: S