La función strings.TrimLeftFunc() devuelve una porción de la string s con todos los puntos de código Unicode principales c que satisfacen f(c) eliminados.
Sintaxis:
func TrimLeftFunc(s string, f func(rune) bool) string
Aquí, s es la string y func() es el método que satisface los caracteres de la string.
Valor devuelto: Devuelve la string después de eliminar los caracteres principales de la string.
Ejemplo 1:
// Golang program to illustrate // the strings.TrimLeftFunc() Function package main // importing fmt, unicode and strings import ( "fmt" "strings" "unicode" ) // Calling Main method func main() { // Here we have a string. The function // returns true for the letters // and all other will trim out // from the string only from Left fmt.Print(strings.TrimLeftFunc("77GeeksForGeeks!!!", func(r rune) bool { return !unicode.IsLetter(r) })) }
Producción:
GeeksForGeeks!!!
Ejemplo 2:
// Golang program to illustrate // the strings.TrimLeftFunc() Function package main // importing fmt, unicode and strings import ( "fmt" "strings" "unicode" ) // Calling Main method func main() { // Here we have a string. The function // returns true for the letters // and numbers as well // and all other will trim out // from the string only from left fmt.Print(strings.TrimLeftFunc("!!!34GeeksForGeeks!!!!", func(r rune) bool { return !unicode.IsLetter(r) && !unicode.IsNumber(r) })) }
Producción:
34GeeksForGeeks!!!!
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA