Solved
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
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
Best answer by redgeographics
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

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

