La función strings.ToLowerSpecial() en Golang se usa para devolver una copia de la string s con todas las letras Unicode asignadas a sus minúsculas usando la asignación de mayúsculas y minúsculas especificada por c.
Sintaxis:
func ToLowerSpecial(c unicode.SpecialCase, s string) string
Aquí, c es el mapeo de casos y s es la string especificada.
Ejemplo 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")) }
Producción:
hello, geeks
Ejemplo 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")) }
Producción:
computer portal
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA