I have following regex:
Word:(\(?<term>\)[a-zA-Z()]*)
If I pass (Word:Arm) it will capture Arm, but if I want to pass (Word:(Arm)) it does not match a thing. I need this second case to capture (Arm), brackets included.
How can I achieve this?