Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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()

share|improve this question
2  
Handy Google search tip: enter "mdn" after the name of a JavaScript function, e.g., "parseint mdn", and the first search result is almost always the appropriate doco page at the Mozilla Developer Network. – nnnnnn Feb 24 '12 at 10:43
This behavior becomes handy when you are parsing CSS properties since sometimes, they include a unit: parseInt("120px",10) -> 120 – Ignitor Sep 8 '12 at 16:43

7 Answers

up vote 6 down vote accepted

Yes: parseInt() is absolutely meant to work like that; to quote the Mozilla Developer Network entry:

The parseInt function converts its first argument to a string, parses it, and returns an integer or NaN. If not NaN, the returned value will be the decimal integer representation of the first argument taken as a number in the specified radix (base). For example, a radix of 10 indicates to convert from a decimal number, 8 octal, 16 hexadecimal, and so on. For radices above 10, the letters of the alphabet indicate numerals greater than 9. For example, for hexadecimal numbers (base 16), A through F are used.

If parseInt encounters a character that is not a numeral in the specified radix, it ignores it and all succeeding characters and returns the integer value parsed up to that point. parseInt truncates numbers to integer values. Leading and trailing spaces are allowed.

It seems that parseInt() is explicitly expecting to take a string and will take the first sequence of numbers (until it encounters an invalid numerical character) and return that as a number of whatever base was specified in the radix parameter.

Incidentally, to reduce errors when parsing the strings passed to parseInt() remember to use the radix parameter, for example:

parseInt('123odod24',10); // for base-10
parseInt('123odod24',16); // for base-16

Reference:

share|improve this answer

parseInt attempts to parse the string until it finds a non-integer value, at which point it returns whatever it had.

So if the string is:

  • 1234abcd - it returns 1234
  • 1a3f - it returns 1
  • a14883 - it returns NaN
  • 1.5 - it returns 1
  • -1.3a - it returns -1

Same with parseFloat except that won't break on a .

  • 1234abcd - it returns 1234
  • 1a3f - it returns 1
  • a14883 - it returns NaN
  • 1.5 - it returns 1.5
  • -1.3a - it returns -1.3
share|improve this answer

As far as I know the parseInt() method is trying to parse until it finds a character. So if you have

  • parseInt("123 Iam funny") it will return 123.
  • parseInt("whats up 4711") it will return NaN

Some documentation you might be checking out :

share|improve this answer

It's documented to behave like that:

If parseInt encounters a character that is not a numeral in the specified radix, it ignores it and all succeeding characters and returns the integer value parsed up to that point.

Whether that behaviour is a good idea is another matter, but it's too late to change it now.

share|improve this answer

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 Number.

Number("123blahblahblah456"); //=> NaN
Number("123"); //=> 123
// if the conversion result needs to be an int
Math.round(Number("123.4567")); //=> 123
share|improve this answer
nice tip.. didn't know about the Number part... thanks for the info.. – Vrushank Feb 24 '12 at 14:58

yes ! like explain here : http://www.w3schools.com/jsref/jsref_parseInt.asp

Tips and Notes

Note: Only the first number in the string is returned!

Note: Leading and trailing spaces are allowed.

Note: If the first character cannot be converted to a number, parseInt() returns NaN.

Example

Parse different strings:

<script type="text/javascript">

document.write(parseInt("10") + "<br />");
document.write(parseInt("10.33") + "<br />");
document.write(parseInt("34 45 66") + "<br />");
document.write(parseInt(" 60 ") + "<br />");
document.write(parseInt("40 years") + "<br />");
document.write(parseInt("He was 40") + "<br />");

document.write("<br />");
document.write(parseInt("10",10)+ "<br />");
document.write(parseInt("010")+ "<br />");
document.write(parseInt("10",8)+ "<br />");
document.write(parseInt("0x10")+ "<br />");
document.write(parseInt("10",16)+ "<br />");

</script>

The output of the code above will be:

10
10
34
60
40
NaN

10
8
8
16
16
share|improve this answer

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 isFinite(), it checks wether a string is a finite, legal number:

isFinite("123"); // true
isFinite("123a");// false

However this will return true for empty string and whitespace. You can therefore improve this solution by writing

mystring = "123";
mystringb = " ";
!isNaN(parseInt(mystring)) && isFinite(mystring); // true
!isNaN(parseInt(mystringb)) && isFinite(mystringb); // false

Based on these suggestions I'm sure you can build your own function that will ignore any string that contains nonnumerical characters.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.