Answers for "remove all parentheses from string php"

PHP
1

php remove parentheses and contents from string

$string = "ABC (Test1)";
echo preg_replace("/\([^)]+\)/","",$string); // 'ABC '
Posted by: Guest on June-24-2021

Code answers related to "remove all parentheses from string php"

Browse Popular Code Answers by Language