in reply to Re: Re: Text elimination within a string
in thread Text elimination within a string

Add a g as option to your s/// and might be right. Still you should consider using the following regex that doesn't use .*:
s/\([^)]\)//g;
Which will strip off all braced strings, including the braces.
--
Alfie