Parser Combinators: Parsing for Haskell Beginners (opens in new tab)
Parsing is something every programmer does, all the time. Often, you are lucky, and the data you receive is structured according to some standard like json, xml … you name it. When it is, you just download a library for converting that format into native data types, and call it a day.
Read the original article