There are enough regular operations with the old list,
import Data.Char
> [ w | w <- words "one , Two", all isAlpha w ]
["one","Two"]
aka
> filter (all isAlpha) . words $ "one , Two"
["one","Two"]
Hacking, parsing and design list
In word processing, there is a scale of power and weight. The simplest list-based solutions, such as the ones above, offer very little syntax noise for quick results (in the same spirit as quick'n'dirty text processing in shell scripts).
, , . split,
> splitOn " , " "one , Two"
["one","Two"]
, , . , , , parsec uu-parsinglib. , , , , , , .
: () , " " " ". , .