PHP usuń nawiasy i zawartość z ciągu

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