10
votes
4answers
936 views
What are the disadvantages of the Spirit parser-generator framework from boost.org?
In several questions I've seen recommendations for the Spirit parser-generator framework from boost.org, but then in the comments there is grumbling from people using Spirit who are not happy. Will …
9
votes
10answers
1k views
What parser generator do you recommend
I'm currently shopping for a FOSS parser generator for a project of mine. It has to support either C or C++.
I've looked at bison/flex and at boost::spirit.
I went from writing my own to spirit to …
5
votes
3answers
158 views
When to use parser-generator, when is regex is enough?
I have not gotten into the field of formal languages in computer science yet, so maybe my question is silly. I am writing a simple NMEA parser in C++, and I have to choose:
My first idea was to …
4
votes
4answers
1k views
How can I build a Truth Table Generator?
I'm looking to write a Truth Table Generator as a personal project.
There are several web-based online ones here and here.
(Example screenshot of an existing Truth Table Generator)
I have the …
3
votes
5answers
337 views
Parser generator for Delphi?
Can anyone recommend a parser generator that will produce win32 Delphi code? What I'm trying to do is create a simple Domain-Specific Language.
3
votes
10answers
646 views
How can I parse code to build a compiler in Java?
Hey,
I need to write a compiler. It's homework at the univ. The teacher told us that we can use any API we want to do the parsing of the code, as long as it is a good one. That way we can focus more …
2
votes
2answers
74 views
Advice on Python Parser Generators
Hey guys, this is my first question here on Stack Overflow and I was wondering if I could ask the advice of people who know a bit more about Python and Parser Generators than I do.
I've been given a …
2
votes
3answers
168 views
What is a good C# compiler-compiler/parser generator?
I'm looking for a parser generator that given an EBNF for a LL(k) language will give me a C# parser and generate classes the types defined in the EBNF.
2
votes
4answers
251 views
Help me find an appropriate ruby/python parser generator
The first parser generator I've worked with was Parse::RecDescent, and the guides/tutorials available for it were great, but the most useful feature it has was it's debugging tools, specifically the …
2
votes
4answers
251 views
What is the most widely used parser generator for C#?
I'm looking for anyone with some experience using a parser generator that is either design for or has C# available as a target language.
What seems to be the standard?
Some of the options I have …
2
votes
5answers
386 views
How to use parsers like lex or yacc in c++
Hi,
I want to parse the strings, so that to check whether they have specified syntax or not.
Ex:
Str = Z344-R565l t
Here my requirement is after z there should be a number and after that a "-" and …
1
vote
3answers
63 views
parsing recursive structures in scala
I'm trying to contruct a parser in scala which can parse simple SQL-like strings. I've got the basics working and can parse something like:
select id from users where name = "peter" and age = 30 …
1
vote
3answers
96 views
Online resources for writing a parser-generator
I want to write a parser-generator for educational purposes, and was wondering if there are some nice online resources or tutorials that explain how to write one. Something on the lines of "Let's …
1
vote
6answers
208 views
Parser, Generator for Java with the following requirements…
I am looking for a parser generator for Java that does the following: My language project is pretty simple and only contains a small set of tokens.
Output in pure READABLE Java code so that I can …
1
vote
1answer
144 views
ANTLR2 vs ANTLR3
Have you used either of these or both? Which do you prefer, and for what reason?
For example, I learned v2 recently and am probably going to stick with it because of the high performance …
