I need a regular expression to select all the text between Opening parenthesis closing parenthesis.
Example:
xxxxxxx (Regular Expression) xxxxxxx( One ) xxxxxxx(One Word ) xxxxxxx ( Two Word)
1) xxxxxxx(lowercase)
2) xxxxxxx(UPPERCASE)
Result should be:
- Match 1: xxxxxxx (Regular Expression)
- Match 2: xxxxxxx( One )
- Match 3: xxxxxxx(One Word )
- Match 4: xxxxxxx ( Two Word)
- Match 5: xxxxxxx(lowercase)
- Match 6: xxxxxxx(UPPERCASE)
Remark : xxxxxxx is any charactor
Thank you.