func TrimLeft(s, cutset string) string
package main import ( "fmt" "strings" ) func main() { fmt.Print(strings.TrimLeft("¡¡¡Hello, Gophers!!!", "!¡")) } // Output: // Hello, Gophers!!!