Parslet a very cool Parsing Expression Grammar parser
Recently I made a japanese language learning tool, which is very cool :) . In this tool we need to create
a mark language parser to parse like this [kanji|furigana], My colleague zete, use his very professional regexp
skill to make a regexp to parse this text.
Look at above stunning regular expression. I never toughed this level of complexity of regexp.
But later on when I was looking at http header parser, then found a good tool, called parslet.
It just do the exactly same thing, and even could do more complicated things like parsing a language.