In a PHP project, I have:
$string = \"1,555\"; str_replace(\',\', \'\', $string); echo $string; //is still 1,555
str_replace does not remo
$string = str_replace(',', '', $string);