Quantcast
Channel: How to remove unwanted commas from a string? - Stack Overflow
Viewing all articles
Browse latest Browse all 5

Answer by Subrata Mallik for How to remove unwanted commas from a string?

$
0
0
<?php$str = ",a,b,c,,,d,,"echo $str=str_replace(',,','',$str);?>

Output:,a,b,c,d


<?php $str = ",a,b,c,,,d,,"echo $str=trim(str_replace(',,','',$str),',');?>

Output:a,b,c,d


Viewing all articles
Browse latest Browse all 5

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>