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

Except in this case, a greedy match is required.

The second example is 'death to dot star' compliant, but is still making an assumption (that all text in braces to be removed is in upper case)

Using:

\([^)]*\)
would only match first set of braces.

So .* is appropriate here. honest :)

cLive ;-)

Update: Should also begin match with a ^. Hmmm, oops.