Hi Guys, I have a textbox for 'Area '.I need a regularexpression to validate textbox such that it should allow decimals to enter but no characters.Anyone can help me
|
|
|||||
|
|
|
Why not try something that's already built-in to JavaScript: the parseFloat function? |
||||||
|
|
|
This regex can validate integers and optional floating point numbers: [0-9]*.?[0-9]+ And instead of using regular expressions, you could use isNaN(value) to check if the numerical value is not a number (NaN). |
||||
|
|
|
How about
It will match all the following exapmles that have a *: 0* |
||||||||||
|
|
|
For decimal values you would have to allow [.] as well so this should work for you : ^[-+]?\d*.?\d*$ (this would also accept + and - symbols) You can get more specific expression from the RegExLib here : Jomit |
||||||||
|
|
|
What is the format of your decimal numbers you will support in your field ? This "Simple Regular expression for decimal numbers?" StackOverflow question details the possible regex.
Can ensure a number with one or two decimals, but would not work with You have lots of possible regex listed here. Unkwntech is a good complete regexp but would allow 1,15223,11,00. I would rather use:
Meaning, if you are using a |
|||
|
|
You can also use the "isFinite" function: |
||
|
|
|
|
this expression takes single space also at the start... which is not valid |
||
|
|
|
|
|
||||
|
|
|
If you want decimals, this should work:
|
||
|
