How to remove the first occurrence of comma from a string in PHP

1 Answer

0 votes
$str = 'c c++, nodejs, python, php java';

$str = preg_replace('/,/', '',  $str, 1);

echo $str;




/*
run:

c c++ nodejs, python, php java

*/

 



answered Apr 17, 2022 by avibootz

Related questions

1 answer 154 views
1 answer 148 views
1 answer 145 views
1 answer 133 views
1 answer 137 views
1 answer 138 views
...