Tagged Questions
The lexing tag has no wiki summary.
5
votes
2answers
106 views
gppg/gplex equivalent in D?
When I was working in C#, I found the gppg and gplex parser/lexer generators to be perfect for my needs. I'm wondering if there's something similar for the D programming language (i.e. a utility that, ...
3
votes
2answers
115 views
How to capture a string without quote characters
I'm trying to capture quoted strings without the quotes. I have this terminal
%token <string> STRING
and this production
constant:
| QUOTE STRING QUOTE { String($2) }
along with these ...
3
votes
3answers
322 views
Lexing and Parsing Utilities
I'm looking for lexical analysis and parser-generating utilities that are not Flex or Bison. Requirements:
Parser is specified using a context-free LL(*) or GLR grammar. I would also consider PEGs.
...
3
votes
1answer
203 views
Return multiple tokens in ocamllex
Is there any way to return multiple tokens in OCamlLex?
I'm trying to write a lexer and parser for an indentation based language, and I would like my lexer to return multiple DEDENT tokens when it ...
3
votes
3answers
377 views
Best way to implement a meta language compiling down to PHP
I've been working on the specifikation / kitchensink for a meta language that can compile down to PHP for some time now. Now I want to begin building the thing. Before I have implemented tiny DSL's ...
3
votes
4answers
1k views
Generate C++ code for BNF grammar
I have looked at the following software tools:
Ragel
ANTLR
BNF Converter
Boost::Spirit
Coco/R
YACC
ANTLR seems the most straight-forward, however its documentation is lacking.
Ragel looks ...
2
votes
3answers
165 views
PHP Lexer and Parser Generator?
I know question Lex and Yacc in PHP was asked before but 1 year ago.
Is there any new mature PHP parser generator now ?
My searches drove me to the following ones, what do you think about them, any ...
2
votes
1answer
127 views
Split shell-like syntax in Haskell?
How can I split a string in shell-style syntax in Haskell? The equivalent in Python is shlex.split.
>>> shlex.split('''/nosuchconf "/this doesn't exist either" "yep"''')
['/nosuchconf', ...
2
votes
1answer
101 views
Profiling Regex Lexer
I've created a router in PHP which takes a DSL (based on the Rails 3 route) and converts it to Regex. It has optional segments (denoted by (nested) parenthesis). The following is the current lexing ...
2
votes
4answers
89 views
Is this the job of the lexer?
Let's say I was lexing a ruby method definition:
def print_greeting(greeting = "hi")
end
Is it the lexer's job to maintain state and emit relevant tokens, or should it be relatively dumb? ...
2
votes
2answers
316 views
Python3.0 - tokenize and untokenize
I am using something similar to the following simplified script to parse snippets of python from a larger file:
import io
import tokenize
src = 'foo="bar"'
src = bytes(src.encode())
src = ...
2
votes
3answers
1k views
Expression parsing: how to tokenize
I'm looking to tokenize Java/Javascript-like expressions in javascript code. My input will be a string containing the expression, and the output needs to be an array of tokens.
What's the best ...
1
vote
1answer
42 views
Why parser-generators instead of just configurable-parsers?
The title sums it up. Presumably anything that can be done with source-code-generating parser-generators (which essentially hard-code the grammar-to-be-parsed into the program) can be done with a ...
1
vote
1answer
42 views
HOP::Lexer with overlapping tokens
I'm using HOP::Lexer to scan BlitzMax module source code to fetch some data from it. One particular piece of data I'm currently interested in is a module description.
Currently I'm searching for a ...
1
vote
0answers
92 views
Adding alternate syntax to clang
I ran across the SPECS alternate grammar for C++, and while I'm not sure I like some of the more gratuitous syntax changes they made (changing pointers from * to ^, for instance), it turned me on to ...
1
vote
6answers
107 views
T-SQL language specification and lexing rules
I'm thinking about writing a templating tool for generating T-SQL code, which will include delimited sections like below;
SELECT
~~idcolumn~~
FROM
~~table~~
WHERE
~~table~~.flag = 1
...
1
vote
0answers
134 views
Switching between Configuration languages in ScintillaNet?
We're trying to implement an editor for a mix between javascript and HTML based on ScintillaNet.
The javascript code is embedded in between <SCRIPT> </SCRIPT> tags...
What i'd like to do ...
1
vote
1answer
309 views
Practical difference between parser rules and lexer rules in ANTLR?
I understand the theory behind separating parser rules and lexer rules in theory, but what are the practical differences between these two statements in ANTLR:
my_rule: ... ;
MY_RULE: ... ;
Do ...
1
vote
1answer
139 views
Recognize Identifiers in Chinese characters by using Lex/Yacc
How can I use Lex/Yacc to recognize identifiers in Chinese characters?
Thanks for help.
1
vote
3answers
138 views
How to evaluate a matched number later in a regex? - Lexing FORTRAN 'H' edit descriptor with Ply
I am using Ply to interpret a FORTRAN format string. I am having trouble writing a regex to match the 'H' edit descriptor which is of the form
xHccccc ...
where x specifies the number of characters ...
1
vote
3answers
267 views
Java Scanner with empty delimiter
I'd like to parse some text using an hand-written descending parser. I used Scanner with the following delimiter : "\\s*". Unfortunately, the fact that this pattern matches an empty String seems to ...
1
vote
1answer
667 views
How to get ANTLR to output hierarchical ASTs?
I have a Lua grammar, (minor modifications to get it to output for C#, just namespace directives and a couple of option changes) and when I run it on some sample input, it gives me back a tree with a ...
0
votes
1answer
15 views
How to get Coco/R parser to not be greedy
My ATG file defines a code block as
Codeblock = "<#" {anychar} "#>"
When the Coco generated parser comes across a block like this:
<#
a=5;
print "Hello world!";
#>
The token ...
0
votes
1answer
91 views
FsLex - Differ between 2 strings
I've a couple of tokens:
PNAME and ENAME - both are strings.
Now I want to setup 2 rules in my lexer, in order to match those tokens.
The first rule (PNAME) should match when the string consist of ...
0
votes
1answer
95 views
Lexing space seperated words in ANTLR3 where some words are keywords
I am working on a project that involves transforming part of speech tagged text into an ANTLR3 AST with phrases as nodes of the AST.
The input to ANTLR looks like:
DT-THE The NN dog VBD sat IN-ON on ...
0
votes
3answers
98 views
Java KeyEvent & Syntax Highlighting
I'm writing a syntax highlighting text editor in Java and I've run into a bit of a problem as to what I should do as opposed to what I want to do. Basically the KeyEvent class provides me with a bit ...
0
votes
1answer
75 views
Howto use JRuby's org.jruby.lexer.yacc.RubyYaccLexer
I'm using ripper to doing ruby-code lexing in mri-1.9., I would like to do the same thing in JRuby, i noticed there is this org.jruby.lexer.yacc.RubyYaccLexer used in ...
0
votes
1answer
208 views
How to write a text transformer?
Suppose I have a text that I can easily parse. It consists of text and special identifiers. After parsing I get a list of tokens that correspond to text and special identifiers in the text.
The ...
0
votes
1answer
59 views
How to exclude more than one character in rule?
I'm trying to write a string matching rule in ANTLRWorks, and i need to match either escaped quotes or any non quote character. I can match escaped quotes but I'm having trouble with the other part: ...
0
votes
2answers
85 views
How do i add parens to this rule?
I have a left-recursive rule like the following:
EXPRESSION : EXPRESSION BINARYOP EXPRESSION | UNARYOP EXPRESSION | NUMBER;
I need to add parens to it but i'm not sure how to make a left parens ...
0
votes
1answer
43 views
Character Consumption Question
If i have a subrule like the following:
.. (~']' ~']')* ...
will it only match an even number of characters?
0
votes
2answers
149 views
ANTLRWorks error compiling grammar: “syntax error: invalid char literal: INVALID”
I wrote a stub for a grammar (only matches comments so far), and it's giving me the error "syntax error: invalid char literal: <INVALID>". Moreover, i've tracked down the error to being in the ...
0
votes
1answer
371 views
Comment lexer rule
I'm new to ANTLR and i've come up with this lexer rule to parse out comments, will it work?
COMMENT_LINE : (COMMENT (. - LINE_ENDING)* LINE_ENDING){$channel=hidden};
(I couldn't find anything ...
-1
votes
1answer
56 views
tilde accent marks alex
I'm building a compiler in Haskell. I have problems parsing characters with tilde accent marks. I'm using alex 2.3.3.
I can't find a solution. Please help.
Cheers,
SM.