Hello,
I have a long text and in some part of it there is text in clauses :
abdghgj(dfsfdsf)fsdfdsf(Fsf) .
I want ,using regular expressions to get only the text that is inside
the clauses.
How to do it?
Thank you!
Ben Voigt [C++ MVP] - 28 Aug 2007 21:45 GMT
> Hello,
> I have a long text and in some part of it there is text in clauses :
[quoted text clipped - 3 lines]
> How to do it?
> Thank you!
[(]([^)]+[)]
Match opening parenthesis, then capture any number of characters that aren't
closing parenthesis, then match closing parenthesis