Haskellで文字列のsplit

isAlphaで判別する方法
 

import Data.Char

main = do
     print $ filter (all isAlpha) . words $ "one , Two"