Let be a string alphanumeric and I want to split it when he founds a number.
remove xs = [ x | x <- xs, not (x `elem` ",.?!-:;\"\'0123456789")]
I started by those numbers and somne punctuation but I how can I split the string, so I give the string "I go 25abc tomorrow 100!"->["I","go","abc","tomorrow"] !
Data.List.Splitpackage containingsplitOnfunction. Unfortunately it is not standard (hence I don't provide it as an answer), but might be good enough for you.