use preg_match() and a regular expression.
preg_match('/\(.+\)/', $str, $matches);
print_r($matches);
Ought to do it.
Edit: Ahh, LL beat me to it, again. And makes a good point, as always - I assumed by strip you wanted to match it, but if you wanted to remove it, preg_replace would be a better option.