📌  相关文章
📜  如何在 Golang 中将符文映射到小写?

📅  最后修改于: 2021-10-25 02:14:16             🧑  作者: Mango

Rune 是 ASCII 的超集或者是 int32 的别名。它包含世界书写系统中可用的所有字符,包括重音符号和其他变音符号、制表符和回车符等控制代码,并为每个字符分配一个标准编号。这个标准数字在 Go 语言中被称为 Unicode 代码点或符文。
您可以在ToLower()函数的帮助下将给定的符文映射为小写。此函数将给定符文的大小写(如果符文的大小写为大写或标题)更改为小写,如果给定的符文已经以小写形式存在,则此函数不执行任何操作。这个函数是在Unicode包下定义的,所以为了访问这个方法,你需要在你的程序中导入Unicode包。

句法:

func ToLower(r rune) rune

示例 1:

// Go program to illustrate how
// to map a rune to Lowercase
package main
  
import (
    "fmt"
    "unicode"
)
  
// Main function
func main() {
  
    // Creating rune
    rune_1 := 'G'
    rune_2 := 'e'
    rune_3 := 'E'
    rune_4 := 'k'
    rune_5 := 's'
  
    // Mapping the given rune
    // into lower case
    // Using ToLower() function
    fmt.Printf("Result 1: %c ", unicode.ToLower(rune_1))
    fmt.Printf("\nResult 2: %c ", unicode.ToLower(rune_2))
    fmt.Printf("\nResult 3: %c ", unicode.ToLower(rune_3))
    fmt.Printf("\nResult 4: %c ", unicode.ToLower(rune_4))
    fmt.Printf("\nResult 5: %c ", unicode.ToLower(rune_5))
}

输出:

Result 1: g 
Result 2: e 
Result 3: e 
Result 4: k 
Result 5: s 
Result 6: f 

示例 2:

// Go program to illustrate how
// to map a rune to Lowercase
package main
  
import (
    "fmt"
    "unicode"
)
  
// Main function
func main() {
  
    // Creating rune
    rune_1 := 'S'
    rune_2 := 'a'
    rune_3 := 'M'
    rune_4 := 'P'
    rune_5 := 'L'
    rune_6 := 'e'
  
    // Mapping the given rune
    // into lower case
    // Using ToLower() function
    fmt.Printf("Result 1: %c ", unicode.ToLower(rune_1))
    fmt.Printf("\nResult 2: %c ", unicode.ToLower(rune_2))
    fmt.Printf("\nResult 3: %c ", unicode.ToLower(rune_3))
    fmt.Printf("\nResult 4: %c ", unicode.ToLower(rune_4))
    fmt.Printf("\nResult 5: %c ", unicode.ToLower(rune_5))
    fmt.Printf("\nResult 6: %c ", unicode.ToLower(rune_6))
}

输出:

Result 1: s 
Result 2: a 
Result 3: m 
Result 4: p 
Result 5: l 
Result 6: e