How do I convert a string into an integer in JavaScript?
Is it possible to do this automatically, or do I have to write a subroutine to do it manually?
|
How do I convert a string into an integer in JavaScript? Is it possible to do this automatically, or do I have to write a subroutine to do it manually? |
|||
|
|
|
parseInt or unary plus or even parseFloat with floor or Math.round parseInt:
unary plus if your string is already in the form of an integer:
if your string is or might be a float and you want an integer:
or, if you're going to be using Math.floor several times:
If you're the type who forgets to put the radix in when you call parseInt, you can use parseFloat and round it however you like. Here I use floor.
Interestingly, Math.round (like Math.floor) will do a string to number conversion, so if you want the number rounded (or if you have an integer in the string), this is a great way, maybe my favorite:
You don't see this much. valueOf is used mostly internally, according to w3c
|
|||||||||||||
|
|
Try parseInt function:
But there is a problem. If you try to convert "010" using parseInt function, it detects as octal number, and will return number 8. So, you need to specify a radix (from 2 to 36). In this case base 10.
Example:
|
|||
|
|
|
Try parseInt.
|
|||||||||
|
|
Also as a side note: Mootools has the function toInt() which is used on any native string (or float (or integer)).
|
|||||||||
|
|
ParseInt() and + are different
|
|||
|
|
|
Beware if you use parseInt to convert a float in scientific notation! For example: parseInt("5.6e-14") will result in 5 instead of 0 |
|||||
|
|
I posted the wrong answer here, sorry. fixed. This is an old question, but I love this trick:
The double bitwise negative drops off anything after the decimal point AND converts it to a number format. I've been told it's slightly faster than calling functions and whatnot, but I'm not entirely convinced. |
||||
|
|