Hi,
is there a way for me to remove all text within parenthesis () of a longer text string?
for example: SERVICE RENDERED: INITIAL: DEPENDENT VISA FOR DAUGHTER (xxxxx) (STAND ALONE) (xxxx) ;GOVERNMENT FEES PAID. HKD 000
text string length varies.
Thanks.
-KW
Solved! Go to Solution.
How about some RegEx: \(.*?\)
Thanks all, Regex worked like a charm! was looking into fuzzy match - name match but that process was getting more complicated by the minute.