How to convert this 20,00 into 2000 in javascript ?
Basically how to remove decimal sign but keep all digits?
|
|
|||
|
Everybody stand back, I know regular expressions!
In other words, replace() all occurences of
That may be useful as the decimal delimiter is locale-specific (which e.g. means that in English ( |
|||||||||||
|
|
Use replace
|
|||
|
|
|
Regular Expressions are your friend:
This will remove anything that's not a digit. |
|||
|
|
|
Here's a non-regex way.
|
|||||||||
|
|
I assume your number is a string. Then you could do |
|||
|
|
|
If you only have on comma in your string, you don't event need regex:
|
|||
|
|
,is a decimal separator in some locales, it's not really relevant - this is for all intents and porpoises a manipulation on strings, functionally equivalent toXX-zz->XXzz. – Piskvor Nov 24 '10 at 23:1720,00is not a number literal in JS. – Piskvor Nov 24 '10 at 23:32