Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
601 views

PEG for Python style indentation

How would you write a Parsing Expression Grammar in any of the following Parser Generators (PEG.js, Citrus, Treetop) which can handle Python/Haskell/CoffeScript style indentation: Examples of a not ...
7
votes
10answers
1k views

what's the best way to parse a body of text against multiple (15+) regexes on each line?

I have a body of text that I have to scan and each line contains at least 2 and sometimes four parts of information. The problem is that each line can be 1 out of 15-20 different actions. in ruby the ...
5
votes
1answer
873 views

Limitations of PEG grammar & parser generators?

I was enjoying using YARD a lot: http://www.ootl.org/yard/ http://code.google.com/p/yardparser/ http://www.codeproject.com/KB/recipes/yard-tokenizer.aspx I was able to construct fully functional ...
4
votes
1answer
94 views

What is the role of the Empty production for PEGs?

The empty production rule nonterminal -> epsilon is useful in lex-yacc LR bottom up parser generators (e.g. PLY). In what context should one use Empty productions in PEG parsers e.g. pyparsing ...
4
votes
1answer
230 views

What are the differences between PEGs and CFGs?

From this wikipedia page: The fundamental difference between context-free grammars and parsing expression grammars is that the PEG's choice operator is ordered. If the first alternative ...
3
votes
2answers
93 views

Read data from a txt.file and print out its 2D array contents

I need some help, I would like to print out information from a file (in characters) I decided to use a 2D array since the data looks something like this 0 0 . . . 0 0 . . . . . . . . . . . . . ...
3
votes
1answer
115 views

CFG / PEG used for Code completion?

I'm wondering if it's possible to use a CFG or PEG grammar as a basis for code completion directly without modification. I have heard that code completion is in IDE's is sometimes manipulated and ...
3
votes
2answers
197 views

Timeout on a php Peg Puzzle solver

first time here. I'm working on a Peg Puzzle php solver, using recursion. For small and simple boards, I get the desired results (the script solves the puzzle correctly), but for larger and full ...
3
votes
1answer
65 views

Is this description of alternatives in regexes wrong?

The wikipedia article on PEG states: The fundamental difference between context-free grammars and parsing expression grammars is that the PEG's choice operator is ordered. If the first ...
3
votes
1answer
50 views

Need confirmation about PEG's semantic predicates in pyparsing

The PEG paper describes two semantic predicate parsing expressions: And predicate &e Not predicate !e Does pyparsing support the And predicate ? Or is that just a synonym for the sequencing ...
2
votes
1answer
61 views

LPeg grammar oddity

Part of a Lua application of mine is a search bar, and I'm trying to make it understand boolean expressions. I'm using LPeg, but the current grammar gives a strange result: > re, yajl = ...
2
votes
1answer
27 views

simplest rules in treetop not working

I have a treetop grammar with only two rules: grammar RCFAE rule num [0-9]+ <Num> end rule identifier [a-zA-Z] [a-zA-Z]* <ID> end end I'm trying to ...
2
votes
1answer
107 views

Are there PEG-based parser generators that support left recursion?

Left recursion seems to be a big problem for many parser generators that are built upon the foundations of recursive descent parsing. I'm looking for a PEG-based parser generator that supports it - in ...
1
vote
0answers
9 views

What is the ellipsis (empty string) used for in a Treetop(PEG) grammar?

The Treetop website gives the following explanation that I don't understand Ellipsis An empty string matches at any position and consumes no input. It's useful when you wish to treat a single ...
1
vote
1answer
54 views

Ignore whitespace with PEG.js

I want to ignore whitespaces and new lines with my grammar so they are missing in the PEG.js output. Also, a literal within brackets should be returned in a new array. Grammar start = 'a'? sep+ ...
1
vote
2answers
158 views

PEG parser library on Windows OS

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. :(
1
vote
1answer
127 views

Treetop ruby parser - could not parse Ordered Choice

I have defined simple grammar for parsing string and number using Treetop as below. grammar Simple rule value number / string end rule string word space string / ...
1
vote
2answers
207 views

Any PEG parser capable to handle left recursion?

Well, I know it's possible to rewrite the grammar to eliminate left recursion. But this is a very boring process, and sometimes it's very nontrivial to keep correct associativity. Is there any parser ...
1
vote
3answers
177 views

What is the best way to define grammars for a text editor?

I'm masochistically writing an open-source text editor for Mac and have finally reached the point at which I want to add syntax highlighting. I've been going back and forth on various solutions for ...
0
votes
0answers
18 views

Optional subrule with an identifier in Peg/Leg parser generator

I'm currently writing a parser generator in Leg, I have several rules of the form next = 'foo' identifier:next? They seem to work fine, except when the EOF is hit, in which case the value return ...
0
votes
0answers
100 views

Using LPEG (Lua Parser Expression Grammars) like boost::spirit

So I am playing with lpeg to replace a boost spirit grammar, I must say boost::spirit is far more elegant and natural than lpeg. However it is a bitch to work with due to the constraints of current ...
0
votes
2answers
38 views

Making BBcode parser with PEG problem

I am making bbcode parser with PEG (Citrus implementation for Ruby) and I am stuck on parsing this [b]sometext[anothertext[/b] There is code grammar BBCodeParser rule document (open_tag | ...