Forum Moderators: coopster
I don't know how efficient this is, but what I wound up doing is a preg_replace on anything wrapped in parenthesis and blanking it out.
$string = preg_replace('/\(.*?\)/', '', $string); (BTW: I like your alias). ;)
With RegEx, it can be an enormous amount of work to develop a truly efficient, bug-free expression, and is usually not worth it.
If it works for all instances, and doesn't give you performance anxiety, then go for it.