4
votes
Parameterised regular expression in Python
Well, as you build a regexp from a string, I see no other way. But you could parameterise the string itself with a dictionary:
d = {'bar': 'a', 'foo': 'b'}
regexp = '%(foo …
