I need a simple parser generator. The language does not matter. It only has to be easy and well documented.
A:
You're definitely going to want to take a look at ANTLR. It's not only well-documented but is considered one of the de-facto utilities for language designers.
John Feminella
2010-04-02 17:25:54
A:
If you want to work in Visual Studio and possibly use C#, look at MPPG from Microsoft, part of the Managed Language Services SDK.
http://msdn.microsoft.com/en-us/library/bb165963(VS.80).aspx
mrjoltcola
2010-04-02 17:28:35
A:
I'm fond of bison, also known as yacc. It's not terribly hard, but it requires knowing C.
If you are more a Perl person, Parse::RecDescent is not difficult either.
Paul Nathan
2010-04-02 17:29:11