show/hide this revision's text 4 added 100 characters in body
(\d+)\s+(\(.*?\))?\s?Z

Note the escaped parentheses, and the ? (zero or once) quantifiers. Any of the groups you don't want to capture can be (?: non-capture groups).

I agree about the spaces. \s is a better option there. I also changed the quantifier to insure there are digits at the beginning. As far as newlines, that would depend on context: if the file is parsed line by line it won't be a problem. Another option is to anchor the start and end of the line (add a ^ at the front and a $ at the end).

show/hide this revision's text 3 deleted 89 characters in body
(\d*)\s(\(.*\))?\sZ
\d+)\s+(\(.*?\))?\s?Z

Note the escaped parentheses, and the ? (zero or once) quantifiers. Any of the groups you don't want to capture can be (?: non-capture groups).

I agree about the spaces. \s is a better option there. On I also changed the other hand, newlines quantifier to insure there are not normally enabled (so digits at the beginning. * shouldn't capture new lines)As far as newlines, that would depend on context: if the file is parsed line by line it won't be a problem.

show/hide this revision's text 2 Revision based on feedback.
(\d*) (\(.*\))? Z
\d*)\s(\(.*\))?\sZ

Note the escaped parentheses, and the ? (zero or once) quantifiers. Any of the groups you don't want to capture can be (?: non-capture groups).

I agree about the spaces. \s is a better option there. On the other hand, newlines are not normally enabled (so .* shouldn't capture new lines).

show/hide this revision's text 1