Answers for "remove comma from number"

0

remove comma from number

$val = "1,4552.35";
$val = str_replace(',', '', $val);

echo $val;

//Output will be 14552.35

This will remove comma(,) from the string and echo the output
Posted by: Guest on January-05-2022

Code answers related to "remove comma from number"

Browse Popular Code Answers by Language