Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Example- 1)(abc)xxx --> output-xxx

2)(abc)(xxx) --> output-xxx

3)((abc)xxx) ---> output-xxx

4)((abc) xxx + yyy)--> output-xxx+yyy

5)((abc)) ---> output-null

share|improve this question
2  
You can't count balanced parentheses with a regexp. You'll need to use something else. – Paul Oct 11 '10 at 10:08
This isn't exactly a duplicate, but it has the same answer: stackoverflow.com/questions/3903965/… – Greg Hewgill Oct 11 '10 at 10:09
True. texttoolkit.com/… – Thilo Oct 11 '10 at 10:11

1 Answer

This actually does what you ask for for all your examples, but I suspect is not what you wanted

[^\)]+\)[\(]*([^\)]*)

(tested here)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.