Search
\([^()]*\)
and do not replace anything.
Like a verbose regular expression:
\(
[^()]*
\)
, . (like this (for example)), , , . *
, \[[^[\]]*\], \{[^{}]*\}.
, , ?
(?:(\()|(\[)|(\{))[^(){}[\]]*(?(1)\))(?(2)\])(?(3)\})
, NSRegularExpression . . :
(?:
(\()
|
(\[)
|
(\{)
)
[^(){}[\]]*
(?(1)\))
(?(2)\])
(?(3)\})
* ( ) , , , .