up vote 208 down vote favorite
124
share [g+] share [fb]

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:

 01. IsNumeric('-1') => true
 02. IsNumeric('-1.5') => true
 03. IsNumeric('0') => true
 04. IsNumeric('0.42') => true
 05. IsNumeric('.42') => true
 06. IsNumeric('99,999') => *false*
 07. IsNumeric('0x89f') => *false*
 08. IsNumeric('#abcdef')=> *false*
 09. IsNumeric('1.2.3') => *false*
 10. IsNumeric('') => *false*
 11. IsNumeric('blah') => *false*
link|improve this question

7  
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. – Re0sless Aug 20 '08 at 14:31
1  
Also check out this post and the great comments. – powtac Nov 23 '09 at 18:05
1  
Decimal comma is the standard in entire Europe and Russia (except UK) – Calmarius Feb 16 '11 at 14:29
3  
jQuery 1.7 has introduced the jQuery.isNumeric utility function: api.jquery.com/jQuery.isNumeric – Ates Goral Nov 16 '11 at 20:04
feedback

18 Answers

up vote 370 down vote accepted

@Joel's answer is pretty close, but it will fail in the following cases:

// Whitespace strings:
IsNumeric(' ') == true;
IsNumeric('\t\t') == true;
IsNumeric('\n\r') == true;

// Number literals:
IsNumeric(-1) == false;
IsNumeric(0) == false;
IsNumeric(1.1) == false;
IsNumeric(8e5) == false;

Some time ago I had to implement an IsNumeric function, to find out if a variable contained a numeric value, regardless its type, it could be a String containing a numeric value (I had to consider also exponential notation, etc.), a Number object, virtually anything could be passed to that function, I couldn't make any type assumption, taking care of type coercion (eg. +true == 1; but true shouldn't be considered as "numeric").

I think is worth sharing this set of +30 unit tests made to numerous function implementations, and also share the one that passes all my tests:

function isNumber(n) {
  return !isNaN(parseFloat(n)) && isFinite(n);
}
link|improve this answer
8  
Great answer, thanks for sharing the tests too. – barfoon Aug 19 '10 at 19:52
9  
that's the most beautiful thing i've ever seen; thanks for sharing it! – jah Dec 20 '10 at 15:20
8  
This answer is correct. stackoverflow.com/questions/18082/… Joel's answer is wrong. How could a wrong answer gathered more votes than the right one? – Arvin Feb 12 '11 at 0:07
3  
this fails with other locales where we use decimal commas, but add `n = n.replace(/,/,".");' before the return to fix it. – Zoltan Lengyel Apr 26 '11 at 2:14
2  
@RobG, that behavior is intentional, 2e308 > Number.MAX_VALUE since 2e308 == Infinity. If you want a function that returns true also for positive and negative infinity values, check the function No. 2 in the test suite. Cheers. – CMS Jun 24 '11 at 18:30
show 5 more comments
feedback

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 regular expression.

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 JavaScript to do type coercion on your input value; it must first be interpreted as a number for the boolean compare. If that conversion to a number fails, the expression will result in NaN. Then this numeric result is compared to the original value you passed in. Since the left hand side is a number, type coercion is again used. They should always be the same (always true), but there's a special rule that says NaN is never equal to NaN, and so a value that can't be converted to a number will always return false. The check on the length is of course for the empty string special case. In summary, 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|improve this answer
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 '09 at 21:24
16  
This fails on whitespace strings, eg IsNumeric(' '), IsNumeric('\n\t'), etc all return true – Crescent Fresh Dec 2 '09 at 4:36
14  
It will also fail on Number literals IsNumeric(5) == false; check the set of unit tests I posted, this function is the number 16 on the test suite. stackoverflow.com/questions/18082/… – CMS Dec 2 '09 at 5:52
Perfect! Thanks for sharing.. – tbaskan Sep 3 '10 at 17:55
show 2 more comments
feedback

YUI uses this:

...
isNumber: function(o) {
    return typeof o === 'number' && isFinite(o);
}
...
link|improve this answer
That is more checking the variable type as opposed to the contents of the number. It will also fail on numbers created with new Number(1). – alex Jun 23 '11 at 5:33
feedback

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|improve this answer
//ALSO SHOULD BE ADDED TO YOUR TEST results += (!IsNumeric('-')?"Pass":"Fail") + ": IsNumeric('-') => false\n"; results += (!IsNumeric('01')?"Pass":"Fail") + ": IsNumeric('01') => false\n"; results += (!IsNumeric('-01')?"Pass":"Fail") + ": IsNumeric('-01') => false\n"; results += (!IsNumeric('000')?"Pass":"Fail") + ": IsNumeric('000') => false\n"; – Dan Jan 28 '10 at 1:47
feedback

Use the function isNaN. I believe if you test for !isNaN(yourstringhere) it works fine for any of these situations.

link|improve this answer
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
Note that isNaN("Infinity") === false, which is probably also not what you want (but also won't happen in real life). – Erik Hesselink Feb 10 '10 at 15:13
feedback

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|improve this answer
feedback
function IsNumeric(num) {
     return (num >=0 || num < 0);

}

This works for 0x23 type numbers as well.

link|improve this answer
feedback

To me, this is the best way:

isNumber : function(v){
   return typeof v === 'number' && isFinite(v);
}
link|improve this answer
feedback
return (input - 0) == input && input.length > 0;

didn't work for me. When I put in an alert and tested, input.length was 'undefined'. I think there is no property to check integer length. So what I did was

var temp = '' + input;
return (input - 0) == input && temp.length > 0;

It worked fine.

link|improve this answer
feedback

It can be done without RegExp as

function IsNumeric(data){
    return parseFloat(data)==data;
}
link|improve this answer
shouldnt it === – powtac Nov 23 '09 at 18:04
2  
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 '09 at 18:38
feedback

This should work. Some of the functions provided here are flawed, also should be faster than any other function here.

        function isNumeric(n)
        {
            var n2 = n;
            n = parseFloat(n);
            return (n!='NaN' && n2==n);
        }

Explained:

Create a copy of itself, then converts the number into float, then compares itself with the original number, if it is still a number, (whether integer or float) , and matches the original number, that means, it is indeed a number.

It works with numeric strings as well as plain numbers. Does not work with hexadecimal numbers.

Warning: use at your own risk, no guarantees.

CJ phpmember.com

link|improve this answer
feedback

Integer value can be verified by:

function isNumeric(value) {
    var bool = isNaN(+value));
    bool = bool || (value.indexOf('.') != -1);
    bool = bool || (value.indexOf(",") != -1);
    return !bool;
};

This way is easier and faster! All tests is checked!

link|improve this answer
feedback

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|improve this answer
feedback

A couple of 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 covers:

  • 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
  • A period that is followed by 1 or more numbers
link|improve this answer
feedback

The following may work as well.

        function isNumeric(v) {
            return v.length > 0 && !isNaN(v) && v.search(/[A-Z]|[#]/ig) == -1;
        };
link|improve this answer
feedback

My solution,

function isNumeric(input) {
    var number = /^\-{0,1}(?:[0-9]+){0,1}(?:\.[0-9]+){0,1}$/i;
    var regex = RegExp(number);
    return regex.test(input) && input.length>0;
}

It appears to work in every situation, but I might be wrong.

link|improve this answer
feedback

@Zoltan Lengyel 'other locales' comment (Apr 26 at 2:14) in @CMS Dec answer (2 '09 at 5:36):

I would recommend testing for typeof (n) === 'string':

    function isNumber(n) {
        if (typeof (n) === 'string') {
            n = n.replace(/,/, ".");
        }
        return !isNaN(parseFloat(n)) && isFinite(n);
    }

This extends Zoltans recommendation to not only be able to test "localized numbers" like isNumber('12,50') but also "pure" numbers like isNumber(2011).

link|improve this answer
feedback

For matches in scientific notation...

/^-?\d*\.?\d+([eE]\d*.\d+)?$/
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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