La función strings.ToUpperSpecial() en Golang se usa para devolver una copia de la string s con todas las letras Unicode asignadas a sus mayúsculas usando la asignación de mayúsculas y minúsculas especificada por c.
Sintaxis:
func ToUpperSpecial(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.ToUpperSpecial Function package main import ( "fmt" "strings" "unicode" ) func main() { // using the function fmt.Println(strings.ToUpperSpecial(unicode.TurkishCase, "Hello, Geeks")) }
Producción:
HELLO, GEEKS
Ejemplo 2:
// Golang program to illustrate // the strings.ToUpperSpecial Function package main import ( "fmt" "strings" "unicode" ) func main() { // using the function fmt.Println(strings.ToUpperSpecial(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