Search Results

13
votes

How do you translate this regular-expression idiom from Perl into Python?

Using named groups and a dispatch table: r = re.compile(r'(?P<cmd>foo|bar|baz)(?P<data>.+)') def do_foo(data): ... def do_bar(data): ... def do_baz(data): …
5
votes

How do you translate this regular-expression idiom from Perl into Python?

Alternatively, something not using regular expressions at all: prefix, data = var[:3], var[3:] if prefix == 'foo': # do something with data elif prefix == 'bar': # do someth …
0
votes

Regex to remove conditional comments

Don't use a regular expression for this. You will get confused about comments containing opening tags and what not, and do the wrong thing. HTML isn't regular, and trying to modify it with a single …
1
vote

Regular expressions but for writing in the match

Of course. See the 'sub' and 'subn' methods of compiled regular expressions, or the 're.sub' and 're.subn' functions. You can either make it replace the matches with a string argument you give, or …