Blog articles/Parsing: Difference between revisions
DonStewart (talk | contribs) No edit summary |
DonStewart (talk | contribs) |
||
Line 16: | Line 16: | ||
* [http://halogen.note.amherst.edu/~jdtang/scheme_in_48/tutorial/overview.html Write yourself a Scheme in 48 hours] | * [http://halogen.note.amherst.edu/~jdtang/scheme_in_48/tutorial/overview.html Write yourself a Scheme in 48 hours] | ||
* [http://davblog48.blogspot.com/2007/05/parsec.html A beginner with Parsec] | * [http://davblog48.blogspot.com/2007/05/parsec.html A beginner with Parsec] | ||
=== Regular expressions === | |||
* [http://www.serpentine.com/blog/2007/02/27/a-haskell-regular-expression-tutorial/ A regular expression tutorial] | |||
* [http://haskell.org/haskellwiki/Regular_expressions Using the new regex packages] | |||
* [http://michaelspeer.blogspot.com/2007/05/initial-code-at-regular-expressions-in.html Regular expressions in Haskell] | |||
=== Code generation === | === Code generation === |
Revision as of 04:57, 28 June 2007
Parsing
- Parser combinators
- Monadic parsing
- Adventures in Haskell: the Parsec magic weapon
- Adventures in Haskell: parsing the game world
- Combinator parsing
- Parser with Writer monad
- Simple Parsec Example: HTMangL
- Parsers, Parsec and Haskell
- Interesting parsers in Haskell
- Explicit Typing, Trail Blazing, and Packrat Parsing
- Playing fast and loose with Parsec for parsing in Haskell
- Config file parsing
- Parsing JSON in Haskell
- Write yourself a Scheme in 48 hours
- A beginner with Parsec
Regular expressions
Code generation
- Writing x86 code generators with Harpy: