Tagged Questions
a program converting a sequence of characters into a sequence of tokens
18
votes
2answers
3k views
lexers vs parsers
Are lexers and parsers really that different in theory ?
It seems fashionable to hate regular expressions: coding horror, another blog post.
However, popular lexing based tools: pygments, geshi, ...
13
votes
9answers
5k views
Poor man's “lexer” for C#
I'm trying to write a very simple parser in C#.
I need a lexer -- something that lets me associate regular expressions with tokens, so it reads in regexs and gives me back symbols.
It seems like I ...
11
votes
5answers
1k views
hand coding a parser
For all you compiler gurus, I wanna write a recursive descent parser and I wanna do it with just code. No generating lexers and parsers from some other grammar and don't tell me to read the dragon ...
11
votes
10answers
920 views
Have you ever effectively used lexer/parser in real world application?
Recently, I am started learning Antlr. And knew that lexer/parser together could be used in construction of programming languages.
Other than DSL & programming languages, Have you ever directly ...
10
votes
3answers
1k views
Looking for a clear definition of what a “tokenizer”, 'parser“ and ”lexers" are and how they are related to each other and used?
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 a ...
9
votes
3answers
224 views
Is it a Lexer's Job to Parse Numbers and Strings?
Is it a lexer's job to parse numbers and strings?
This may or may not sound dumb, given that fact that I'm asking whether a lexer should parse input. However, I'm not sure whether that's in fact the ...
9
votes
4answers
225 views
When parsing Javascript, what determines the meaning of a slash?
Javascript has a tricky grammar to parse. Forward-slashes can mean a number of different things: division operator, regular expression literal, comment introducer, or line-comment introducer. The ...
9
votes
2answers
772 views
Lexing partial SQL in C#
I'd need to parse partial SQL queries (it's for a SQL injection auditing tool). For example
'1' AND 1=1--
Should break down into tokens like
[0] => [SQL_STRING, '1']
[1] => [SQL_AND]
[2] ...
9
votes
5answers
3k views
Good parser generator (think lex/yacc or antlr) for .NET? Build time only?
Is there a good parser generator (think lex/yacc or antlr) for .NET? Any that have a license that would not scare lawyers? Lot’s of LGPL but I am working on embedded components and some organizations ...
8
votes
2answers
560 views
What lexer to build a lexer/parser in Scala
I'm currently looking for a lexer/parser that generate Scala code from a BNF grammar (a ocamlyacc file with precedence and associativity) and I'm quite confused to find.. almost nothing:
For parsing, ...
8
votes
6answers
2k views
Lexer written in Javascript?
I have a project where a user needs to define a set of instructions for a ui that is completely written in javascript. I need to have the ability to parse a string of instructions and then translate ...
7
votes
3answers
144 views
Where should I draw the line between lexer and parser?
I'm writing a lexer for the IMAP protocol for educational purposes and I'm stumped as to where I should draw the line between lexer and parser. Take this example of an IMAP server response:
* FLAGS ...
7
votes
4answers
283 views
lexers / parsers for (un) structured text documents
There are lots of parsers and lexers for scripts (i.e. structured computer languages). But I'm looking for one which can break a (almost) non-structured text document into larger sections e.g. ...
7
votes
6answers
693 views
Parser How To in .NET
I'd like to understand how to construct a parser in .NET to process source files. For example, maybe I could begin by learning how to parse SQL or HTML or CSS and then act on the results to be able to ...
6
votes
5answers
165 views
Is the word “lexer” a synonym for the word “parser”?
The title is the question: Are the words "lexer" and "parser" synonyms, or are they different? It seems that Wikipedia uses the words interchangeably, but English is not my native language so I can't ...
6
votes
3answers
1k views
Does C# have (direct) flex/yacc port? Or what lexer/parser people use for C#?
I might be wrong, but it looks like that there's no direct flex/bison (lex/yacc) port for C#/.NET so far.
For LALR parser, I found GPPG/GPLEX, and for LL parser, there is the famous ANTLR. But, I ...
6
votes
1answer
3k views
Is C++ code generation in ANTLR 3.2 ready?
I was trying hard to make ANTLR 3.2 generate parser/lexer in C++. It was fruitless. Things went well with Java & C though.
I was using this tutorial to get started: ...
6
votes
2answers
4k views
Python regular expressions - how to capture multiple groups from a wildcard expression?
I have a Python regular expression that contains a group which can occur zero or many times - but when I retrieve the list of groups afterwards, only the last one is present. Example:
...
5
votes
4answers
930 views
How to efficently build an interpreter (lexer+parser) in C?
I'm trying to make a meta-language for writing markup code (such as xml and html) wich can be directly embedded into C/C++ code.
Here is a simple sample written in this language, I call it WDI (Web ...
5
votes
3answers
1k views
Is there a working C++ grammar file for ANTLR?
Are there any existing C++ grammar files for ANTLR?
I'm looking to lex, not parse some C++ source code files.
I've looked on the ANTLR grammar page and it looks like there is one listed created by ...
5
votes
2answers
707 views
What would be a good Delphi lexer/parser for Javascript language file?
Background
I want to be able to parse Javascript source in a Delphi Application. I need to be able to identify variables and functions within the source for the purpose of making changes to the code ...
4
votes
2answers
109 views
Lexer that recognizes indented blocks
I want to write a compiler for a language that denotes program blocks with white spaces, like in Python. I prefer to do this in Python, but C++ is also an option. Is there an open-source lexer that ...
4
votes
2answers
236 views
Where can I learn the basics of writing a lexer?
I want to learn how to write a lexer. My university course had an assignment where we had to write a parser (and a lexer to go along with it) but this was given to us with no instruction or feedback ...
4
votes
2answers
260 views
Design guidelines for parser and lexer?
I'm writing a lexer (with re2c) and a parser (with Lemon) for a slightly convoluted data format: CSV-like, but with specific string types at specific places (alphanumeric chars only, alphanumeric ...
4
votes
3answers
562 views
ANTLR grammar: parser- and lexer literals
What's the difference between this grammar:
...
if_statement : 'if' condition 'then' statement 'else' statement 'end_if';
...
and this:
...
if_statement : IF condition THEN statement ELSE ...
4
votes
2answers
91 views
why do some languages require function to be declared in code before calling?
Suppose you have this pseudo-code
do_something();
function do_something(){
print "I am saying hello.";
}
Why do some programming languages require the call to do_something() to appear below the ...
4
votes
4answers
387 views
How can I parse marked up text for further processing?
See updated input and output data at Edit-1.
What I am trying to accomplish is turning
+ 1
+ 1.1
+ 1.1.1
- 1.1.1.1
- 1.1.1.2
+ 1.2
- 1.2.1
- 1.2.2
- 1.3
+ 2
- 3
into a python data ...
4
votes
3answers
605 views
Easy way to parse .h file for comments using Python?
How to parse in easy way a .h file written in C for comments and entity names using Python?
We're suppose for a further writing the content into the word file already developed.
Source comments are ...
4
votes
6answers
1k views
Lexer/parser tools
Which lexer/parser generator is the best (easiest to use, fastest) for C or C++? I'm using flex and bison right now, but bison only handles LALR(1) grammars. The language I'm parsing doesn't really ...
4
votes
2answers
1k views
How would you parse indentation (python style)?
How would you define your parser and lexer rules to parse a language that uses indentation for defining scope.
I have already googled and found a clever approach for parsing it by generating INDENT ...
3
votes
2answers
119 views
boost spirit dynamic lexer with column numbers?
I'm having trouble making a dynamic boost spirit lexer that tracks the column number. Is this possible? Can anyone provide a simple example?
Thanks!
3
votes
1answer
107 views
Can't match single character in Alex grammar
I finally got back to fleshing out a GitCommit message mode that I want to add to YI but I seem to missing something basic. I can't seem to match a single character in a grammar, all my rules only ...
3
votes
3answers
350 views
Writing a code formatting tool for a programming language
I'm looking into the feasibility of writing a code formatting tool for the Apex language, a Salesforce.com variation on Java, and perhams VisualForce, its tag based markup language.
I have no idea on ...
3
votes
1answer
202 views
is there a way to perform a look-ahead with fslex/Lexing.LexBuffer
I'm using fslex and in one of my tokenizer rules I need to look for the next char so I can decide whether to continue consuming tokens or to stop, unwind and let the previous rule consume it.
I've ...
3
votes
3answers
338 views
Recursive Descent Parser for something simple?
I'm writing a parser for a templating language which compiles into JS (if that's relevant). I started out with a few simple regexes, which seemed to work, but regexes are very fragile, so I decided to ...
3
votes
4answers
255 views
Writing part of a compiler (written in c++) in Perl
i am trying to learn more about compilers and programming languages, unfortunately my university doesnt offer a course about compilers and so i have to do myself (thank you internet).
At the moment ...
3
votes
3answers
85 views
Can anyone recommend a method to perform the following string operation using C#
Suppose I have a string:
"my event happened in New York on Broadway in 1976"
I have many such strings, but the locations and dates vary. For example:
"my event happened in Boston on 2nd Street in ...
3
votes
1answer
466 views
ANTLR Parser with manual lexer
I'm migrating a C#-based programming language compiler from a manual lexer/parser to Antlr.
Antlr has been giving me severe headaches because it usually mostly works, but then there are the small ...
3
votes
1answer
234 views
Lexical analysis in MRI Ruby 1.9.2
I'm learning some compiler theory and practice at the moment. Ruby is my every day language of choice, and so I went to look at its lexer and parse grammar. Does ruby have a separate lexer? If so, ...
3
votes
1answer
250 views
ANTLR3 lexer precedence
I want to create a token from '..' in the ANTLR3 lexer which will be used to string together expressions like
a..b // [1]
c .. x // [2]
1..2 // [3]
3 .. 4 // [4]
So, I have added,
...
3
votes
1answer
512 views
How to parse template languages in Ragel?
I've been working on a parser for simple template language. I'm using Ragel.
The requirements are modest. I'm trying to find [[tags]] that can be embedded anywhere in the input string.
I'm trying ...
3
votes
5answers
206 views
Call methods on native Javascript types without wrapping with ()
In Javascript, we can call methods on string literals directly without enclosing it within round brackets. But not for other types such as numbers, or functions. It is a syntax error, but is there a ...
3
votes
1answer
360 views
Lexing newlines in scala StdLexical?
I'm trying to lex (then parse) a C like language. In C there are preprocessor directives where line breaks are significant, then the actual code where they are just whitespace.
One way of doing this ...
3
votes
7answers
386 views
lexer/parser ambiguity
How does a lexer solve this ambiguity?
/*/*/
How is it that it doesn't just say, oh yeah, that's the begining of a multi-line comment, followed by another multi-line comment.
Wouldn't a greedy ...
3
votes
4answers
532 views
Performance of tokenizing CSS in PHP
This is a noob question from someone who hasn't written a parser/lexer ever before.
I'm writing a tokenizer/parser for CSS in PHP (please don't repeat with 'OMG, why in PHP?'). The syntax is written ...
3
votes
4answers
200 views
Lexers/tokenizers and character sets
When constructing a lexer/tokenizer is it a mistake to rely on functions(in C) such as isdigit/isalpha/... ? They are dependent on locale as far as I know. Should I pick a character set and ...
3
votes
3answers
134 views
What is a suitable lexer generator that I can use to strip identifiers from many language source files?
I'm working on a group project for my University which is going to be used for plagiarism detection in Computer Science.
My group is primarily going off the hashing/fingerprinting techniques ...
3
votes
3answers
683 views
Determining “Mood” of Textual Phrases through Lexical Analysis
I am looking to apply scores (positive, negative or neutral) to short phrases of text. Short of parsing out emoticons and making assumptions based on their usage, I'm unsure of what else to try. Can ...
3
votes
3answers
491 views
Seeking an interactive utility for creating context free parser grammars
I would like a utility which I can give a piece of text (in a text box) and experiment with a parser grammar (through editing a BNF of similar) and token structure while I can see how the parse tree ...
2
votes
4answers
75 views
Creating a List Lexer/Parser
I need to create a lexer/parser which deals with input data of variable length and structure.
Say I have a list of reserved keywords:
keyWordList = ['command1', 'command2', 'command3']
and a user ...