1
vote
1answer
37 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 …
8
votes
8answers
297 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 …
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 …
0
votes
1answer
77 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 …
1
vote
2answers
116 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 …
0
votes
9answers
244 views
what is the best programming language to write parsers and compilers ?
please i need some resources to begin (i am a cs student)
1
vote
3answers
193 views
Best practices to parse emails with Ruby
Hello Ruby/Rails/Merb developers!
Im currently working on a web project that will have a feature to communicate with clients by email. So, let`s say i created account for a customer in my admin …
1
vote
3answers
249 views
Is the Html Agility Pack still the best .NET HTML parser?
Html Agility Pack was given as the answer to a StackOverflow question some time ago, is it still the best option? What other options should be considered? Is there something more lightweight?
2
votes
1answer
89 views
What is the relation between parser combinators and recursive descent parsers?
What is the relation between parser combinators and recursive descent parsers?
0
votes
1answer
114 views
HTML Parser: Redirection limit reached error
Hello all, I am using DOM Simple HTML Parser, and return this error:
Warning: …
0
votes
3answers
198 views
Rules based parsing for configuration files
What is the best method to implement a system for parsing a configuration file based on a set of rules? I would appreciate any pointers in the direction of best practices or existing implementations.
…
2
votes
1answer
162 views
HTML Parser
Anyone know of an HTML parser for VB.NET or C#? I know .NET has a lot of XML support, like XMLReader and XMLWriter. Is there an HTMLWriter or HTMLReader?
Ultimately what I'd like is a library that …
0
votes
4answers
251 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 …
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 …
0
votes
4answers
128 views
What’s a good way to mix RSS feeds using Python?
SimplePie lets you merge feeds together:
http://simplepie.org/wiki/tutorial/sort_multiple_feeds_by_time_and_date
Is there anything like this in the Python world? The Universal Feed Parser …
