I can't figure out a regular expression that will return a parenthesis block in a string, no matter how big/small it is and no matter if it contains other parenthesis blocks.
In otherwords, if I have a string like '( a ( b ( c ) ( d ) e ) )', I want a regular expression to capture the whole thing, not just '( a ( b ( c )' and not just '( c )'. Can you help O wise ones?