TrimLeft returns a subslice of s by slicing off all leading UTF-8-encoded code points contained in cutset.
package main import ( "bytes" "fmt" ) func main() { fmt.Print(string(bytes.TrimLeft([]byte("453gopher8257"), "0123456789"))) }