当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang strings.ToLowerSpecial()用法及代码示例


strings.ToLowerSpecial() Golang中的函数用于返回字符串s的副本,该字符串的所有Unicode字母均使用c指定的大小写映射关系映射为小写字母。

用法:

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

在这里,c是大小写映射,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

相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 strings.ToLowerSpecial() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。