The problem is the space in the capture name. Remove the space and it works great.
From the MSDN documentation: "The string used for the name must not contain any punctuation and cannot begin with a number. You can use single quotes instead of angle brackets, for example (? 'Name')."
It doesn't matter if you use angle brackets <> or single quotes '' to indicate the name of the group.
source
share