Answers for "remove brackets from a string in 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
0

remove square brackets from string php

$output = preg_replace( '/\[\[(\w+)\[\]/' , '$1' , $string );
Posted by: Guest on June-06-2021

Code answers related to "remove brackets from a string in php"

Browse Popular Code Answers by Language