
April 1st, 2013, 07:49 AM
|
|
Registered User
|
|
Join Date: Feb 2013
Posts: 10
Time spent in forums: 4 h 3 m 14 sec
Reputation Power: 0
|
|
|
not sure what you r trying to ask, but if you want all the text between =("text also containing inner paranthesis." ) then you cawrite regular expression as follows:- =\((.*?)\). you can use backslash to tell interpreter that subsequent character followed in the text should be considered as it is and the the second paranthesis which doesnot have backward slash is you regex to obtain text in the outer paranthesis. and if you want to ignore all the parenthesis then regex is:- =\(([a-z 0-9 A-Z other possible characters excluding parenthesis]+)\)
Last edited by klipangel : April 1st, 2013 at 07:55 AM.
Reason: wanted to make answer more precise
|