Answers for "remove cury braces 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

Browse Popular Code Answers by Language