Why this regex '^[0-9]+\.?[0-9]*$' match for 12.2 and 12,2 ?
var dot = '12.2',
comma = '12,2',
regex = '^[0-9]+\.?[0-9]*$';
alert( dot.match(regex) );
alert( comma.match(regex) );
While it works on regexpal.com
|
Why this regex
While it works on regexpal.com |
|||
|
|
|
Because the variable
|
||||
|
|
|
Are you sure you don't need to escape the back-slash? It is in a string, you know...
or
Actually, I'd recommend that you write it this way:
|
|||
|
|
|
Since you write your regex in a string, you need to escape the slash.
|
|||
|
|
|
Your regex should be
Consult https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/regexp for proper syntax. |
|||
|
|