Skip to main content
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

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

Screenshot 2020-09-23 at 09.28.26


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

Screenshot 2020-09-23 at 09.28.26

Thanks so much! worked well..............


Reply