Monthly Archives: December 2008

Data.List.Split

Have you ever had a string like this “abc;def;ghijk;lm” and wanted to turn it into a list of strings, like this? [“abc”, “def”, “ghijk”, “lm”] Of course, you could always use a parsing library, or a regular expression library, but … Continue reading

Posted in haskell, projects | Tagged , , , | 2 Comments

QuickCheck rocks my socks

Over the past few days I’ve been hacking on a Data.List.Split module, to be used when you just want to quickly split up a list without going to the trouble of using a real parsing or regular expression library — … Continue reading

Posted in haskell, projects | Tagged , | 2 Comments