📜  字符串.ToLowerSpecial() 在 Golang 中的函数示例

📅  最后修改于: 2021-10-24 13:24:02             🧑  作者: Mango

字符串.ToLowerSpecial() Golang 中的函数用于返回字符串s 的副本,其中使用 c 指定的大小写映射将所有 Unicode 字母映射到它们的小写。

句法:

func ToLowerSpecial(c unicode.SpecialCase, s string) string

这里, c 是 case 映射, s 是指定的字符串。

示例 1:

// Golang program to illustrate
// the strings.ToLowerSpecial Function
package main
  
import (
    "fmt"
    "strings"
    "unicode"
)
  
func main() {
  
    // using the function
    fmt.Println(strings.ToLowerSpecial(unicode.TurkishCase, "Hello, Geeks"))
}

输出:

hello, geeks

示例 2:

// Golang program to illustrate
// the strings.ToLowerSpecial Function
package main
  
import (
    "fmt"
    "strings"
    "unicode"
)
  
func main() {
  
    // using the function
    fmt.Println(strings.ToLowerSpecial(unicode.TurkishCase, "Computer Portal"))
}

输出:

computer portal