0
votes
1answer
42 views
Handling error conditions in Lex rather than Yacc?
Suppose I have a lex regular expression like
[aA][0-9]{2,2}[pP][sS][nN]? { return TOKEN; }
If a user enters
A75PsN
A75PS
It will match
But if a user says something like
A75 …
0
votes
5answers
124 views
Textual analysis of large documents
I have a project where I need to compare multi-chapter documents to a second document to determine their similarity. The issue is I have no idea how to go about doing this, what ap …
0
votes
2answers
401 views
How to make a flex (lexical scanner) to read UTF-8 characters input?
It seems that flex doesn't support UTF-8 input. Whenever the scanner encounter a non-ASCII char, it stops scanning as if it was an EOF.
Is there a way to force flex to eat my UTF …
0
votes
2answers
88 views
what is the use of tokens.h when I am programming a lexer?
I am programming a lexer in C and I read somewhere about the header file tokens.h. Is it there? If so, what is its use?
0
votes
4answers
192 views
Where might I obtain a lexical analyzer capable of reporting for-loop errors in C or C++?
I need a simple lexical analyzer that reports for-loop errors in C/C++.
3
votes
2answers
713 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. Examp …
3
votes
5answers
599 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(o …
2
votes
3answers
345 views
Recommendations for a good C#/ .NET based lexical analyser
Can anyone recommend a good .NET based lexical analyser, preferably written in C#?
2
votes
3answers
666 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. Anyon …
0
votes
2answers
227 views
Implement word boundary states in flex/lex (parser-generator)
I want to be able to predicate pattern matches on whether they occur after word characters or after non-word characters. In other words, I want to simulate the \b word break regex …
0
votes
1answer
63 views
Good APIs for scope analyzers
I'm working on some code generation tools, and a lot of complexity comes from doing scope analysis.
I frequently find myself wanting to know things like
What are the free variabl …
