1

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 2

0

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?

Sign up to request clarification or add additional context in comments.

1 Comment

:D I should have a look at ANTLR first! :D
0

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

I've already known it. But it's hard to understand Boost.Spirit in an afternoon. :( Anyway, thank you!

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.