PHP Удалить скобки и содержимое из строки

$string = "ABC (Test1)";
echo preg_replace("/\([^)]+\)/","",$string); // 'ABC '
Geeky Bravo