If I write this script :
alert(parseInt("123blahblahblah456"));
I get the alert with the value 123
Ideally, shouldn't the function NOT do anything since it is an invalid integer string?
Similar is the case with parseFloat()
|
If I write this script :
I get the alert with the value Ideally, shouldn't the function NOT do anything since it is an invalid integer string?
Similar is the case with |
|||
|
Yes:
It seems that Incidentally, to reduce errors when parsing the strings passed to
Reference: |
|||
|
|
|
So if the string is:
Same with
|
|||
|
|
|
As far as I know the
Some documentation you might be checking out : |
|||
|
|
|
It's documented to behave like that:
Whether that behaviour is a good idea is another matter, but it's too late to change it now. |
|||
|
|
|
Yes, cf all the anwers. I'd like to add that this is why checking if certain value can be converted to a number, it's better to use
|
|||
|
|
yes ! like explain here : http://www.w3schools.com/jsref/jsref_parseInt.asp
Example Parse different strings:
The output of the code above will be:
|
|||
|
|
|
This is how it is suppose to work. It parse the string until it reaches a non numerical character. You might be interested in checking out the function
However this will return true for empty string and whitespace. You can therefore improve this solution by writing
Based on these suggestions I'm sure you can build your own function that will ignore any string that contains nonnumerical characters. |
|||
|
|
parseInt("120px",10)->120– Ignitor Sep 8 '12 at 16:43