Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
1answer
4k views

Difference between an LL and Recursive Descent parser?

I've recently being trying to teach myself how parsers (for languages/context-free grammars) work, and most of it seems to be making sense, except for one thing. I'm focusing my attention in ...
11
votes
4answers
2k views

Looking for a tutorial on Recursive Descent Parsing

I am trying to parse some data to no success. Can anyone recommend a good introduction with a lot of examples to Recursive Descent Parsing? I haven't been able to find any.
7
votes
1answer
282 views

boost::spirit composing grammars from grammars

I have figured out how to use spirit -- i.e., I have written a moderately complex grammar. I always take the approach of growing a program -- one subsystem at a time. I've written the data structures ...
6
votes
3answers
2k views

Simple recursive descent in PyParsing

I've tried taking this code and converting it to something for a project I'm working on for programming language processing, but I'm running into an issue with a simplified version: op = oneOf( '+ - ...
5
votes
1answer
143 views

Calculate number of descendants recursively

I have a table with navigation that joins back on its self using ParentId. I am trying to calculate how many descendents each record has, I know that I need to increment a counter in the recursion, ...
5
votes
2answers
819 views

Recursive Descent vs. Generated Parsers - Efficiency

How do hand-written recursive descent parsers (which are inevitably LL(k)) compare to generated LALR parsers in terms of performance? I know that LALR parsers are able to handle far more grammars ...
4
votes
6answers
154 views

How the Perl regular expressions dialect/implementation is called?

The engine for parsing strings which is called "regular expressions" in Perl is very different from what is known by the term "regular expressions" in books. So, my question is: is there some ...
4
votes
2answers
346 views

Recursive descent parser questions

I have two questions about how to write a recursive descent parser: The first is what when you have a nonterminal that can match one of a few different nonterminals? How do you check which way is ...
4
votes
3answers
951 views

Rename files to lowercase in Powershell

I am trying to rename a bunch of files recursively using Powershell 2.0. The directory structure looks like this: Leaflets + HTML - File1 - File2 ... + HTMLICONS + IMAGES - Image1 - ...
4
votes
3answers
712 views

What is a good tool for automatically calculating FIRST and FOLLOW sets?

I'm currently in the middle of playing with a BNF grammar that I hope to be able to wrangle into a LL(1) form. However, I've just finished making changes and calculating the new FIRST and FOLLOW sets ...
4
votes
4answers
1k views

Recursive descent parsing - from LL(1) up

The following simple "calculator expression" grammar (BNF) can be easily parsed with the a trivial recursive-descent parser, which is predictive LL(1): <expr> := <term> + ...
3
votes
2answers
167 views

Haskell - Recursive descent parser

Can some one recommend a simple working example(code) of using recursive descent parser on haskell? All the information I found are too difficult to understand. Thx!
3
votes
2answers
132 views

Practical solution to fix a Grammar Problem

We have little snippets of vb6 code (the only use a subset of features) that gets wirtten by non-programmers. These are called rules. For the people writing these they are hard to debug so somebody ...
3
votes
1answer
259 views

Ruby - recursive each for n-ary tree

Fixed: See EDIT EDIT Hey guys, I'm having trouble with writing my own recursive each for an n-ary tree. @element is the value of the node, and @children is an array of all connected lower nodes. ...
3
votes
1answer
1k views

Converting EBNF to BNF

It's been a few years since my computer-language class and so I've forgotten the finer points of BNF's and EBNF's and I don't have a textbook next to me. Specifically, I've forgotten how to convert an ...
3
votes
1answer
268 views

Is it possible to use Recursive Descent Parser to both verify the grammar AND build the parse tree at the same time?

Is it possible to generate a parse tree at the same time as I use recursive descent parser to check if the data matches grammar? If so, what approach would I use to build a tree as I recursively ...
3
votes
1answer
298 views

boost::Spirit Grammar for unsorted schema

I have a section of a schema for a model that I need to parse. Lets say it looks like the following. { type = "Standard"; hostname="x.y.z"; port="123"; } The properties are: The elements ...
3
votes
2answers
576 views

jQuery - select children on the same level (odd or even)

is there a way to replace following CSS with jQuery? .quote-body .quote-body { background: #f5f5f5 } .quote-body .quote-body .quote-body { background: #fff } .quote-body .quote-body .quote-body ...
3
votes
2answers
1k views

Recursive descent parser: how to find the FIRST, FOLLOW, and PREDICT sets?

I'm looking for a good explanation of the definitions of the FIRST, FOLLOW, and PREDICT sets of a RDP when given a grammar.
2
votes
2answers
72 views

ISO human-readable parser for Python in Python

I'm looking for a parser for Python (preferably v. 2.7) written in human-readable Python. Performance or flexibility are not important. The accuracy/correctness of the parsing and the clarity of the ...
2
votes
1answer
54 views

Recursive descent parser in PHP

I wanted to make this parser for a long time now, but I don't even know where to start from. Those parser scripts are nowhere close to be clear to me, so any tutorial for beginners would come in ...
2
votes
1answer
22 views

Parser implementations comparison: correctness confirmation and (perhaps) optimization

I've implemented two expression parsers, in recursive descent and operator precedence. They're implemented in Object Pascal. Here's the recursive descent: function ParseFactor: PNode; var Temp: ...
2
votes
3answers
89 views

Using option types instead of exceptions for a recursive descent parser?

I'm writing a simple recursive descent parser in OCaml. Typically (as far as I can tell from the tutorials online and in books), exceptions are used to indicate parse failures, for example: match tok ...
2
votes
1answer
58 views

Generate output along with recursive descent parser

Writing simple parsers are trivial and I have implemented several over the years. In college, we also had to write one. But we never had to generate meaningful output using this method; we never ...
2
votes
2answers
78 views

Simple java recursive descent parsing library with placeholders

For an application I want to parse a String with arithmetic expressions and variables. Just imagine this string: ((A + B) * C) / (D - (E * F)) So I have placeholders here and no actual ...
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 ...
2
votes
3answers
309 views

Recursive Descent Parser for EBNF in PHP

I am attempting to write a recursive descent parser in PHP for the following EBNF: EXP ::= < TERM > { ( + | - ) < TERM > } TERM ::= < FACTOR > { ( * | / ) < FACTOR > } FACTOR ...
2
votes
4answers
323 views

Write recursive-descent parsing to parse epsilon(ε) in Java

For example, EBNF A ::= B c; B ::= T1 | T2 | ε T1 ::= a T2 ::= b parseA() { switch(currentToken.kind){ case Token.a : parseT1(); case Token.b : parseT2(); break; ...
2
votes
1answer
335 views

Is it possible to parse PHP using PEG?

The question is very straightforward: Is it possible to parse PHP using PEG? I want to use a PEG parser-generator to parse PHP. Please kindly advise. Thank you!
2
votes
2answers
679 views

Resources for writing a recursive descent parser by hand

Like the title says, I'm looking to write a recursive descent parser by hand and I'm looking for good resources on how to structure it, algorithms, etc.
1
vote
0answers
52 views

Parenthesized Expression Recursive Descent Parser

For grammar rules listed below , I want to write a recursive descent parser : Expression -> Digit | '(' Expression Op Expression ')' Op -> +|* Digit -> 0|1|2|3|4|5|6|7|8|9 So I have ...
1
vote
1answer
83 views

Parse::RecDescent Module in Perl

I found that Parse::RecDescent is a Perl module to implement natural language parser. Is there any way to implement Parse::RecDescent in C# language also?
1
vote
1answer
56 views

Specify repeating tokens in Recursive Descent Parser with NLTK

I am trying to parse a grammar similar to this. PER -> 'noun' | 'noun1' | 'noun2' PERS -> PER+ This is not a valid grammar for NLTK's recursive descent parser. How do specifiy one of more ...
1
vote
2answers
110 views

What exactly does delta mean in the gradient descent algorithm?

As on the picture: Could someone help me understand what exactly what delta means in the gradient descent algorithm?
1
vote
1answer
42 views

What is a good source of runtime/stack space analysis for recursive descent parsers?

I'd like to understand more about the runtime of recursive descent parsers. I'm also interested in the stack space used by recursive descent parsers (and the trade-offs between runtime and stack ...
1
vote
2answers
81 views

ASP.NET MVC “strong” relationships

Currently I have an Model that's recursive (one of its properties is of the same type). For example: public class Page { public int ID { get; set; } public string Description{ get; set; } ...
1
vote
1answer
53 views

Optional non-terminals in production

Does anyone know how to handle the following case? if-section: if-group [ elif-groups ] [ else-group ] endif-line if-group: .... elif-groups: elif-group elif-groups elif-group ...
1
vote
1answer
52 views

Is it wrong to use void return type for each rule in recursive descendant parser?

Quoted from wiki: void term(void) { factor(); while (sym == times || sym == slash) { getsym(); factor(); } } void expression(void) { if (sym == plus || sym == minus) ...
1
vote
1answer
125 views

Combining lexer with many parsers

I know a typical configuration of lexer and parser, where the lexer reads the source code and generates tokens, which are then directed to the parser, and the parser uses them as terminal symbols in ...
1
vote
3answers
595 views

Parse tree for SQL statements - precisely for “SELECT” statement

I am writing (hand written) recursive descent parser for SQL select statement in c++, i need to know whether the parse tree created by me is correct or not. I want to check but i didn't get a good ...
1
vote
1answer
213 views

Help … LL Grammar And Recursive descent parser

I'm using ANTRL and this is my some grammar which give error to me. statement : (name)( | BECOMES expression | LPAREN (expression (COMMA expression)*)? RPAREN | SHIFTLEFT name LPAREN ...
1
vote
3answers
371 views

Good grammar for date data type for recursive descent parser LL(1)

I'm building a custom expression parser and evaluator for production environment to provide a limited DSL to the users. The parser itself as the DSL, need to be simple. The parser is going to be built ...
1
vote
3answers
453 views

Is there an easy way to chunk a text file into brace-balanced sections?

I'm trying to parse some data out of a file using Perl & Parse::RecDescent. I can't throw the full data file at the perl script because RecDescent will take days poring over it. So I split up ...
0
votes
0answers
52 views

LR parser or recursive ascent parser

As an example, for a simple context free grammar like, S -> 12A A -> 4 or 5A How should LR (recursive ascent not table based) parser be implemented for it. Sample code in C or any language would be ...
0
votes
1answer
80 views

Unambiguous Grammar for Regular Expressions

I'm trying to develop a recursive decent parser for regular expressions for a homework assignment. I just wanted to ask the community if the grammar I've developed is correct or if I'm on the right ...
0
votes
1answer
112 views

Converting a grammar to LL(1)

I have this grammar: program ::= expr_list expr_list ::= {LF} [expr {LF {LF} expr}] {LF} lvalue ::= [expr DOT] NAME call_param ::= [[NAME COLON] expr {COMMA [NAME COLON] expr}] func_param ::= ...
0
votes
1answer
247 views

Recursive descent parsing and abstract syntax trees

I'm hard coding a recursive decent parser, mostly for learning purposes and, I've run into some trouble. I'll use this short excerpt from the CSS3 grammar as an example: simple_selector = ...
0
votes
2answers
310 views

Writing correct LL(1) grammars?

I'm currently trying to write a (very) small interpreter/compiler for a programming language. I have set the syntax for the language, and I now need to write down the grammar for the language. I ...
0
votes
1answer
82 views

How to handle the inability to break on syntax errors in a recursive descent parser

I'm currently in a class on systems software development. We are writing the two-pass assembler for the assembly language of a fictional machine. We've implemented the tokenizer, and all of the ...
0
votes
1answer
62 views

Producing Expressions from This Grammar with Recursive Descent

I've got a simple grammar. Actually, the grammar I'm using is more complex, but this is the smallest subset that illustrates my question. Expr ::= Value Suffix | "(" Expr ")" Suffix Suffix ...

1 2