Here's what I want:
$practice_name = preg_replace("/\([^\)]+\)/","",$practice_name);
echo($practice_name);
But that does not work when I reference the variable then.
This however does work.
echo(preg_replace("/\([^\)]+\)/","",$practice_name));
But I do not want to update my code every time I reference $practice_name, I only want to update where the variable gets assigned.