Are there any Parsing Expression Grammar (PEG) C++ libraries for Windows? I've tried in vain to compile pegc/legc, pegc with MS Visual Studio. :(
2 Answers
I have had good luck with Boost.Spirit.Qi, which should work reasonably well with recent versions of the Microsoft compiler. Be forewarned, though: there is a learning curve.
If you just want a parser generator, also have a look at this related question: Is the ANTLR parser generator best for a C++ app with constrained memory?
1 Comment
anhldbk
:D I should have a look at ANTLR first! :D
Try to use a search engine. You will find a wiki page about PEGs and there you will find a list of libraries implementing PEGs. One of them is Boost.Spirit.
1 Comment
anhldbk
I've already known it. But it's hard to understand Boost.Spirit in an afternoon. :( Anyway, thank you!