Hello.
I have a python template engine that heavily uses regexp. It's uses concatenation like
re.compile( regexp1 + "|" + regexp2 + "*|" + regexp3 + "+" )
I can modify individual substrings (regexp1, regexp2 etc). Is it any small and light expression that match nothing so i can use it inside a template where i don't want any matches? Unfortunately, it's sometimes '+' or '*' after regexp atom so i can't use empty string - "nothing to repeat" error will rise.