How to split a string in Haskell?

Is there a standard way to split a string in Haskell?

lines and words work great from splitting on a space or newline, but surely there is a standard way to split on a comma?

I couldn’t find it on Hoogle.

To be specific, I’m looking for something where split "," "my,comma,separated,list" returns ["my","comma","separated","list"].

14 Answers
14

Leave a Comment