6
votes
6answers
259 views
Best/fastest way to write a parser in c#
What is the best way to build a parser in c# to parse my own language?
Ideally I'd like to provide a grammar, and get Abstract Syntax Trees as an output.
Many thanks,
Nestor
0
votes
1answer
51 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 …
0
votes
1answer
21 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 …
1
vote
2answers
87 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 advan …
0
votes
9answers
201 views
what is the best programming language to write parsers and compilers ?
please i need some resources to begin (i am a cs student)
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 me …
1
vote
3answers
165 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 custom …
15
votes
8answers
7k views
Looking for C# HTML parser
I would like to extract the structure of the HTML document - so the tags are more important than the content. Ideally, it would be able to cope reasonably with badly-formed HTML t …
1
vote
3answers
209 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 …
0
votes
4answers
217 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 c …
9
votes
15answers
867 views
Which parser generator to teach my students?
I am teaching (with others) a relatively introductory course in computer science for IT professionals without a background in CS. Since I developed the course materials on automata …
4
votes
1answer
531 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 senten …
22
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 o …
7
votes
15answers
842 views
Learning Resources on Parsers, Interpreters, and Compilers
I've been wanting to play around with writing my own language for a while now (ostensibly for the learning experience) and as such need to be relatively grounded in the constructio …
4
votes
4answers
909 views
What is the difference between Flex/Lex and Yacc/Bison ?
What is the difference between Flex & Lex and Yacc & Bison. I searched the Internet wildly and I didn't find any solid answer.
Can I install pure Lex and Yacc on Ubuntu, o …
