>>> split (oneOf ",;") "hi;there,world" ["hi",";","there",",","world"]
>>> split (oneOf "xyz") "aazbxyzcxd" ["aa","z","b","x","","y","","z","c","x","d"]
>>> endByOneOf ";," "foo;bar,baz;" ["foo","bar","baz"]
>>> split (condense $ endsWithOneOf ".,?! ") "Hi, there! How are you?" ["Hi, ","there! ","How ","are ","you?"]
>>> splitOneOf ";.," "foo,bar;baz.glurk" ["foo","bar","baz","glurk"]
>>> split (startsWithOneOf ['A'..'Z']) "ACamelCaseIdentifier" ["A","Camel","Case","Identifier"]