1
vote
2answers
32 views
several lexers for one parser with PLY ?
Hi,
I'm trying to implement a python parser using PLY for the Kconfig language used to generate the configuration options for the linux kernel.
There's a keyword called source wh …
1
vote
3answers
114 views
Modify PL/SQL statement strings in C++
Hello all,
This is my use case: Input is a string representing an Oracle PL/SQL statement of arbitray complexity. We may assume it's a single statement (not a script).
Now, severa …
1
vote
1answer
48 views
Is there a mechanism in Antlr to allow the lexer to match a token only during certain rules?
I'd like to add a keyword to my language.
This keyword would only have to be matched during one particular parser grammar rule.
Due to backward compatibility I'd like to allow th …
5
votes
6answers
223 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 r …
1
vote
2answers
109 views
Is there a simple way I can tokenize a string without a full-blown lexer?
I'm looking to implement the Shunting-yard Algorithm, but I need some help figuring out what the best way to split up a string into its tokens is.
If you notice, the first step of …
0
votes
1answer
97 views
Haskell lexer problems
I'm writing a lexer in haskell. Here's the code:
lexer :: String -> [Token]
lexer s
| s =~ whitespace :: Bool =
let token = s =~ whitespace :: String in
lex (dro …
8
votes
10answers
345 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 …
3
votes
6answers
370 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 parsi …
2
votes
2answers
126 views
Seeking an interactive utility for creating context free parser grammars
Hi,
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 …
-2
votes
1answer
95 views
Trying to implement this lexer pseudocode
I'm trying to implement this lexer pseudocode, given in class in java. I;m to use iterator in designing the symbol table as well as String Tokinizer. this is the peudocode:
publ …
4
votes
4answers
335 views
Python: Invalid Token
Some of you may recognize this as Project Euler's problem number 11. The one with the grid.
I'm trying to replicate the grid in a large multidimensional array, But it's giving me …
3
votes
5answers
300 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 an …
4
votes
4answers
234 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
…
0
votes
3answers
223 views
Matching Lua’s “Long bracket” string syntax
I'm writing a jFlex lexer for Lua, and I'm having problems designing a regular expression to match one particular part of the language specification:
Literal strings can also b …
1
vote
2answers
202 views
Standard format for concrete and abstract syntax trees
I have an idea for a hobby project which performs some code analysis and manipulation. This project will require both the concrete and abstract syntax trees of a given source file. …
