Remove parentheses and everything within parentheses from string

Hi Everyone
Need help to remove parentheses and everything within parentheses from string.
The idea is to extract column location mark but remove distances from grid.
Example C(-1’ - 8”)-1(1’ - 8”) should return C-1

Use Clockwork’s String.ReplaceRegularExpresssion with the following regular expression:
\([^()]*\)

3 Likes

Thank you @Andreas_Dieckmann for the help.
It worked exactly the way I wanted.
Attaching Image for reference.