9
votes
4answers
128 views
Practical consequences of formal grammar power?
Every undergraduate Intro to Compilers course reviews the commonly-implemented subsets of context-free grammars: LL(k), SLR(k), LALR(k), LR(k). We are also taught that for any given k, each of those …
1
vote
2answers
128 views
Simple HTML DOM Parser error handling
Hello,
I'm using SimpleHTMLDOM Parser to scape a website and I would like to know if there's any error handling method. For example, if the link is broken there is no use to advance in the code and …
1
vote
9answers
225 views
Which language is useful to create a report for a valid C program
Can anyone suggest me a helpful programming language which can be used to create a tool which will analyse the given C program and generate a txt report or html report containing information about the …
23
votes
4answers
1k views
Why C++ cannot be parsed with a LR(1) parser?
I were reading about parsers and parser generators when I hit upon this statement in wikipedia's LR parsing -page:
"Many programming languages can be parsed using some variation of an LR parser. One …
0
votes
1answer
35 views
Format ParseException with JavaCC
I was wondering how could it be possible to format in a human-readable format a ParseException thrown by JavaCC: in fact it includes fields such asbeginLine, beginColumn, endColumn, endLine in the …
1
vote
1answer
39 views
Resolving a shift/reduce conflict in an LALR parser
I've been using PLY to build up a parser for my language, however I've got a shift/reduce conflict that's causing me some trouble. My language has generic types with a syntax ala C++ templates. So …
9
votes
8answers
347 views
What is parsing?
Parsing is something i come accross alot in development, but as a junior its one of those things i assume i will get the hang of at some point, when its needed. In my current project ive been told to …
3
votes
4answers
615 views
Is Boost guilty of being un-Boost-like?
I was just reading the intro to the Boost::Spirit LL Parser framework. The preface suggests that the author and creator likes to use such parsing technology to read in program options. Doesn't Boost …
5
votes
2answers
416 views
Pure Javascript YAML library that supports both dump and load?
Does such a thing exist for YAML (aka YAML)?
If this existed at one time, it must have been obliterated because the latest search turned up nada. It looks like there are plenty of implementations …
0
votes
4answers
260 views
processing json objects in jsp
i have a JSON object sent from the browser to the jsp page. how do i receive that object and process it in jsp. do i need any specific parsers? i have used the following piece of code. but it wouldnt …
4
votes
1answer
614 views
Roll your own NMEA parser or use an open source GPS parser?
I do a lot of location aware computing, often incorporating GPS. I have my own little simple NMEA parser that doesn't do anything special - just transforms the GPS specific sentences into usable …
0
votes
1answer
83 views
Is there a free .eml parser available somewhere?
Hi,
I am writing an add-on for my intranet to allow my users to just email "itsupport" and parse the from as the user who logged the job and the body as the issue.
Does anyone know if their is a …
2
votes
2answers
360 views
Is there a good *strict* date parser for Java?
Is there a good, strict date parser for Java? I have access to Joda-Time but I have yet to see this option. I found the "Is there a good date parser for Java" question, and while this is related it …
6
votes
18answers
3k views
Equation (expression) parser with precedence?
I've developed an equation parser using a simple stack algorithm that will handle binary (+, -, |, &, *, /, etc) operators, unary (!) operators, and parenthesis.
Using this method, however, …
0
votes
1answer
122 views
HTML Parser: Redirection limit reached error
Hello all, I am using DOM Simple HTML Parser, and return this error:
Warning: …
