How to remove text between square brackets in a string using PHP

1 Answer

0 votes
$s = "php [java] python";
 
$no_parenthesis_s = preg_replace("/\[[^)]+\]/","", $s);
 
print($no_parenthesis_s);
    

 
/*
run: 

php python

*/

 



answered Nov 3, 2017 by avibootz
...