Created
August 16, 2014 20:00
-
-
Save lambdahands/e3d981f8d33e0ce1a5fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Data.Text (split, pack, unpack) | |
splitStr :: Char -> String -> [String] | |
splitStr c str = map unpack $ split (== c) (pack str) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment