Tagged Questions

0
votes
3answers
53 views

Using the regular expression [\[\];] in flex

If I have the following in my flex file, what does it do? [\\[\\];] { return yytext[0]; }
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
636 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 …