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 150 views
1 answer 146 views
1 answer 142 views
1 answer 131 views
1 answer 134 views
1 answer 137 views
...