Hi experts,
I'd like to extract text that is within the brackets or trim characters left of the bracket. The length of characters is varied.
e.g C213 (Sturt Hwy) -> Sturt Hwy
apprecialte your help
Page 1 / 1
Assuming it's always a single occurance of a text between brackets you can use a StringReplacer to replace the regex ^.*\\(|\\).*$ with an empty string
Assuming it's always a single occurance of a text between brackets you can use a StringReplacer to replace the regex ^.*\\(|\\).*$ with an empty string
Thanks so much! worked well..............