/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

tyrrrz.me
| | andreabergia.com
2.2 parsecs away

Travel
| | I usually write parsers by starting from a grammar and either coding a lexer/parser by hand or relying on tools such as the fantastic Antlr. However, a friend recently introduced me to parser combinators, which I found to be very interesting and useful. It's not a recent idea, but it was new to me, and I have found it to be very interesting and useful.
| | myme.no
2.2 parsecs away

Travel
| |
| | jobjo.github.io
2.2 parsecs away

Travel
| | Parser combinators aresets of functions for building parsers in a composable fashion. Haskell'sParsec library and OCaml'sAngstrom are two examples.Both of th...
| | deniskyashif.com
17.4 parsecs away

Travel
| In this article, we'll define a basic regular expression language using a context-free grammar and learn how to parse its strings in linear time using the recursive descent method.