i want to remove comma from a number (e.g change 1,125 to 1125 ) in a .tpl file. The value comes dynamically like ${variableMap[key]}
var a='1,125'; a=a. replace(/\,/g,''); // 1125, but a string, so convert it to number a=parseInt(a,10);
In our first python program code, we use replace() method to eliminate all the commas (,) from a python string. The replace() command returns a replica of the string where a substring's existence is exchanged with another substring. Using replace() function, we swap the commas in the python string with null elements.
var a='1,125'; a=a.replace(/\,/g,''); // 1125, but a string, so convert it to number a=parseInt(a,10);
Hope it helps.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With