We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
It seems like both Ruby and Python support empty capture groups. Their use is a little niche, but it probably isn't hard to permit them.
>>> import re >>> m = re.match('()', 'hi') >>> m.group(0) '' >>> m.group(1) ''