show/hide this revision's text 2 Whitespaces inserted.

You can do this:

([0-9]+)(\([^)]+\))?Z
[0-9]+) (\([^)]+\))? Z

This will not work with nested parens for Y, however. Nesting requires recursion which isn't strictly regular any more (but context-free). Modern regexp engines can still handle it, albeit with some difficulties (back-references).

show/hide this revision's text 1

You can do this:

([0-9]+)(\([^)]+\))?Z

This will not work with nested parens for Y, however. Nesting requires recursion which isn't strictly regular any more (but context-free). Modern regexp engines can still handle it, albeit with some difficulties (back-references).