3
votes
2answers
797 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:
…
3
votes
5answers
637 views
Simple regex-based lexer in Python
Lexical analyzers are quite easy to write when you have regexes. Today I wanted to write a simple general analyzer in Python, and came up with:
import re
import sys
class Token(object):
""" A …
2
votes
3answers
740 views
C#/.NET Lexer Generators
I'm looking for a decent lexical scanner generator for C#/.NET -- something that supports Unicode character categories, and generates somewhat readable & efficient code. Anyone know of one?
…
2
votes
3answers
373 views
Recommendations for a good C#/ .NET based lexical analyser
Can anyone recommend a good .NET based lexical analyser, preferably written in C#?
1
vote
1answer
29 views
How to return literals from flex to yacc?
In my yacc file I have things like the following:
var_declaration : type_specifier ID ';'
| type_specifier ID '[' NUM ']' ';' ;
type_specifier : INT | VOID ;
ID, NUM, INT, and VOID …
0
votes
2answers
64 views
What constitutes a ‘word’ in vim ?
Let's say we have the following in vim atm:
int main () {
printf("hello");
return 0;
}
In vim, w moves a word to the right, but what exactly constitutes a 'word'?
For example, if I have …
0
votes
2answers
30 views
yylval and union
What is the purpose of union in the yacc file? Is it directly related to yylval in the flex file? If you don't use yylval, then you don't need to use union?
0
votes
1answer
20 views
How to use yylval with strings in yacc
I want to pass the actual string of a token. If I have a token called ID, then I want my yacc file to actually know what ID is called. I thing I have to pass a string using yylval to the yacc file …
0
votes
1answer
38 views
Insert text in the input file in Lex (with C)
Hey!
I'm trying to help a friend in a college assignment, but i kind of forgot a lot of C an Lex.
The thing is, we are trying to parse a HTML and a correspondent CSS file and add to a tag it's …
0
votes
3answers
103 views
Why Use Lexical Analyzers?
Hello,
I'm building my own language using Flex, but I want to know some things:
Why use lexical analyzers?
There are going to help me in something?
Are they obligatory?
Thanks.
0
votes
2answers
29 views
My flex/yacc program compiles differently on two different linux machines
One one machine, everything compiles fine. On another machine, it complains about the -ly option when I use gcc to create the output file. If I remove the -ly option, then it makes the program, but …
0
votes
2answers
22 views
The program I made with flex/yacc doesn’t always recognize identifiers
I made a program that is supposed to recognize a simple grammar. When I input what I think is supposed to be a valid statement, I get an error. Specifically, if I start out with an identifier, I …
0
votes
3answers
54 views
Using the regular expression [\[\];] in flex
If I have the following in my flex file, what does it do?
[\\[\\];] { return yytext[0]; }
0
votes
2answers
27 views
Why do I get a syntax error in my program made with flex and yacc?
I made a program that is supposed to recognize a simple grammar. When I input what I think is supposed to be a valid statement, I get an error. Specifically, if I type
int a;
int b;
it doesn't …
0
votes
3answers
29 views
How does a lexer return a semantic value that the parser uses?
Is it always necessary to do so? What does it look like?
