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

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

字符串.ToTitleSpecial() Golang 中的函数用于返回字符串s 的副本,其中所有 Unicode 字母都映射到它们的 Unicode 标题大小写,优先考虑特殊的大小写规则。

句法:

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

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

示例 1:

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

输出:

GEEKS FOR GEEKS

示例 2:

// Golang program to illustrate
// the strings.ToTitleSpecial Function
package main
  
import (
    "fmt"
    "strings"
    "unicode"
)
  
func main() {
  
    // using the function
    fmt.Println(strings.ToTitleSpecial(unicode.TurkishCase, "I am a student"))
}

输出:

I AM A STUDENT