Tagged Questions

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 …
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 …
7
votes
15answers
892 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 construction of Parsers, …
6
votes
3answers
288 views

Looking for a clear definition of what a “tokenizer”, ‘parser” and “lexers” are and how they are related to each other and used?

Hello, I am looking for a clear definition of what a "tokenizer", "parser" and "lexer" are and how they are related to each other (e.g., does a parser use a tokenizer or vice versa)? I need to create …
6
votes
4answers
607 views

XML Parser for Javascript

I am looking for a good JavaScript library for parsing XML data. It should be much easier to use than the built-in XML DOM parsers bundled with the browsers. I got spoiled a bit working with JSON and …
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, …
5
votes
3answers
916 views

How Do I Tokenize This String in Ruby?

I have this string: %{Children^10 Health "sanitation management"^5} And I want to convert it to tokenize this into an array of hashes: [{:keywords=>"children", :boost=>10}, {:keywords=>"health", …
5
votes
6answers
494 views

Is Scalas/Haskells parser combinators sufficient?

I'm wondering if Scalas/Haskells parser combinators are sufficient for parsing a programming language. More specifically the language MiniJava. I'm currently reading compiller construction and jflex …
5
votes
5answers
213 views

Are there any good parsing libraries for .Net?

I'm looking for something simple to use where the grammar is easy to define.
5
votes
6answers
2k views

Parse HTML via XPath

In .Net, I found this great library, HtmlAgilityPack that allows you to easily parse non-well-formed HTML using XPath. I've used this for a couple years in my .Net sites, but I've had to settle for …
5
votes
6answers
845 views

Grammar Writing Tools

I am trying to write a grammar in EBNF (barring a really good reason, it has to be EBNF) and am looking for a couple of utilities for it - if there's a GUI interface that can make one, that would be …
5
votes
11answers
1k views

Smart design of a math parser?

What is the smartest way to design a math parser? what i mean is a function that takes a math string (like: "2 + 3 / 2 + (2 * 5)") and returns the calculated value? I did write one in VB6 ages ago but …
5
votes
3answers
401 views

BNF grammar test case generation

Does anyone have any experience with a tool that generates test strings from a BNF grammar that could then be fed into a unit test?
5
votes
7answers
645 views

How can I learn about parser combinators?

I've found a few resources on the subject, but they all require a deep understanding of SmallTalk or Haskell, neither of which I know.
4
votes
4answers
1k 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, or I can install only …

1 2 3 4 5 6 next
15 30 50 per page