vote up 13 vote down star
10

What's the cleanest, most effective way to validate decimal numbers in javascript?

Bonus points for:

  1. Clarity--solution should be clean and simple
  2. Cross-platform

Test cases:

 1. IsNumeric('-1') => true
 2. IsNumeric('-1.5') => true
 3. IsNumeric('0') => true
 4. IsNumeric('0.42') => true
 5. Isnumeric('.42') => true
 6. IsNUmeric('99,999') => *false*
 7. IsNumeric('0x89f') => *false*
 8. IsNumeric('#abcdef')=> *false*
 9. IsNumeric('1.2.3') => *false*
 10. IsNumeric('') => *false*
 11. IsNumeric('blah') => *false*
flag

13 Answers

vote up 27 vote down check

Arrrgh! Don't listen to the regular expression answers. RegEx is icky for this, and I'm not talking just performance. It's so easy to make subtle, impossible to spot mistakes with your regex.

If you can't use isNaN(), this should work much better:

function IsNumeric(input)
{
   return (input - 0) == input && input.length > 0;
}

The (input - 0) expression forces the input value to first be interpreted as a number for the boolean compare. If that interpretation fails, the expression will result in NaN. Then this numeric result is compared to the original, unaltered value you passed in. If they are the same, we have a winner. The check on the length is of course for the empty string special case. So in other words, if you want to know if a value can be converted to a number, actually try to convert it to a number.

Note that it falls down on your 0x89f test, but that's because in many environments that's an okay way to define a number literal. If you want to catch that specific scenario you could add an additional check. Even better, if that's your reason for not using isNaN() then just wrap your own function around isNaN() that can also do the additional check.

link|flag
even better if you just need to account for the 0x89f special case is wrap an IsNumeric() function around isNaN() that then makes your special check only if isNaN() returns false. – Joel Coehoorn Nov 25 '08 at 18:21
Update: promoted my earlier comment to become part of the answer. – Joel Coehoorn Feb 10 at 21:24
vote up 0 vote down

Also check out this post and the great comments: http://debuggable.com/posts/7+8===7-in-javascript%3A4acba016-d204-489b-b5a0-1fd0cbdd56cb

link|flag
vote up 0 vote down

Note that

return isNaN(parseInt(expression))

return isNaN(parseFloat(expression))

ARE BUGGY !!!!!!!!!!!!!!!!!!!

parseInt("00a12") => 0

parseFloat("0.2zzzzz") => 0.2

link|flag
vote up 0 vote down
function IsNumeric(num) {
     return (num >=0 || num < 0);

}

This works for 0x23 type numbers as well.

link|flag
vote up -1 vote down

YUI uses this:

...
isNumber: function(o) {
    return typeof o === 'number' && isFinite(o);
}
...
link|flag
vote up 0 vote down

It can be done without RegExp as

function IsNumeric(data){
    return parseFloat(data)==data;
}
link|flag
shouldnt it === – powtac Nov 23 at 18:04
If we are using == , it will return true even for numbers presented as strings. So the "42" will be counted as valid number in case of "==" and will be counted as invalid in case of === – Aquatic Nov 25 at 18:38
vote up 1 vote down

Yeah, the built-in isNaN(object) will be much faster than any regex parsing, because it's built-in and compiled, instead of interpreted on the fly.

Although the results are somewhat different to what you're looking for (try it):

document.write(!isNaN('-1') + "<br />");
document.write(!isNaN('-1.5') + "<br />");
document.write(!isNaN('0') + "<br />");
document.write(!isNaN('0.42') + "<br />");
document.write(!isNaN('.42') + "<br />");
document.write(!isNaN('99,999') + "<br />");
document.write(!isNaN('0x89f') + "<br />");
document.write(!isNaN('#abcdef') + "<br />");
document.write(!isNaN('1.2.3') + "<br />");
document.write(!isNaN('') + "<br />");
document.write(!isNaN('blah') + "<br />");

true
true
true
true
true
false
true
false
false
true
false
link|flag
vote up 3 vote down

Can't you use the function isNaN? I believe if you test !isNaN(yourstringhere) works fine for any of these situations.

link|flag
Note: !isNaN(null) == true since Number(null) == 0 – Jonathan Lonowski Oct 15 '08 at 4:50
if (!(x==null || isNaN(x))) alert("isNumeric"); // But this solution accepts 0x40 so it is still not what the op wanted. – some Dec 15 '08 at 4:58
vote up -1 vote down

I'd like to add the following:

1. IsNumeric('0x89f') => true
2. IsNumeric('075') => true
Positive hex numbers start with 0x and negative hex numbers start with -0x. Positive oct numbers start with 0 and negative oct numbers start with -0. This one takes most of what has already been mentioned into consideration, but includes hex and octal numbers, negative scientific, Infinity and has removed decimal scientific (4e3.2 is not valid).
function IsNumeric(input){
  var RE = /^-?(0|INF|(0[1-7][0-7]*)|(0x[0-9a-fA-F]+)|((0|[1-9][0-9]*|(?=[\.,]))([\.,][0-9]+)?([eE]-?\d+)?))$/;
  return (RE.test(input));
}

Edit: Anyone else have trubble with the ] character? I can't enter it directly, I need to paste it in here.

link|flag
vote up -1 vote down

A couple tests to add:

IsNumeric('01.05') => false
IsNumeric('1.') => false
IsNumeric('.') => false

I came up with this:

function IsNumeric(input){
  return /^-?(0|[1-9]\d*|(?=\.))(\.\d+)?$/.test(input);
}

The solution has:

  • An optional negative sign at the beginning
  • A single zero, or one or more digits not starting with 0, or nothing so long as a period follows
  • If a period exists, that it's followed by 1 or more numbers
link|flag
vote up -1 vote down

For matches in scientific notation...

/^-?\d*\.?\d+([eE]\d*.\d+)?$/
link|flag
vote up 6 vote down

Just a note 99,999 is a valid number in France, its the same as 99.999 in uk/ us format, so if you are reading in a string from say an input form then 99,999 may be true.

link|flag
vote up 2 vote down

This way seems to work well:

function IsNumeric(input){
    var RE = /^-{0,1}\d*\.{0,1}\d+$/;
    return (RE.test(input));
}

And to test it:

// alert(TestIsNumeric());

function TestIsNumeric(){
    var results = ''
    results += (IsNumeric('-1')?"Pass":"Fail") + ": IsNumeric('-1') => true\n";
    results += (IsNumeric('-1.5')?"Pass":"Fail") + ": IsNumeric('-1.5') => true\n";
    results += (IsNumeric('0')?"Pass":"Fail") + ": IsNumeric('0') => true\n";
    results += (IsNumeric('0.42')?"Pass":"Fail") + ": IsNumeric('0.42') => true\n";
    results += (IsNumeric('.42')?"Pass":"Fail") + ": IsNumeric('.42') => true\n";
    results += (!IsNumeric('99,999')?"Pass":"Fail") + ": IsNumeric('99,999') => false\n";
    results += (!IsNumeric('0x89f')?"Pass":"Fail") + ": IsNumeric('0x89f') => false\n";
    results += (!IsNumeric('#abcdef')?"Pass":"Fail") + ": IsNumeric('#abcdef') => false\n";
    results += (!IsNumeric('1.2.3')?"Pass":"Fail") + ": IsNumeric('1.2.3') => false\n";
    results += (!IsNumeric('')?"Pass":"Fail") + ": IsNumeric('') => false\n";
    results += (!IsNumeric('blah')?"Pass":"Fail") + ": IsNumeric('blah') => false\n";

    return results;
}

I borrowed that regex from http://www.codetoad.com/javascript/isnumeric.asp. Explanation:

/^ match beginning of string
-{0,1} optional negative sign
\d* optional digits
\.{0,1} optional decimal point
\d+ at least one digit
$/ match end of string
link|flag

Your Answer

Get an OpenID
or

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