0
votes
1answer
49 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
2answers
243 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 …
