vote up 2 vote down star

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

flag

36% accept rate
Exactly what format do you want to be valid? "0" "0.0" 0,0" ? Define exactly what you want to allow and we can help you. – some Jan 5 '09 at 8:19
Why not try and convert to a double using your language (e.g. Javascript has some functions to convert strings into numbers)? This will allow numbers to be localized (for people who use , as a decimal point) and standardized (1E3 => 100; 0x64 => 100, anyone?). – strager Jan 5 '09 at 8:24

9 Answers

vote up 4 vote down

Why not try something that's already built-in to JavaScript: the parseFloat function?

link|flag
because parseFloat allows all kinds of invalid input that you don't want to see. – eplawless Jan 5 '09 at 9:13
Do you mean that parseFloat("123 foo") == 123 ? Then couldn't you just reject the string if there's whitespace in it? – Zach Hirsch Jan 5 '09 at 9:25
@Hirsch, Then parseFloat("123foo") would workfine, I think. Still, +1, for stealing my answer. ;P – strager Jan 5 '09 at 18:05
vote up 1 vote down

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

link|flag
1  
+1 for suggesting actual number parsing (using a library function). – strager Jan 5 '09 at 8:47
vote up 1 vote down

How about

[-+]?(?:\d\,?){0,}(?:\.\d*)?

It will match all the following exapmles that have a *:

0*
0.0*
222.0*
1,000.00*
100,000.00*
-100,000,000,000.12*
asdf
blah.blah

link|flag
Thanks to Jomit for the note on +|- – Unkwntech Jan 5 '09 at 8:32
You can use ? instead of {0,1} to speed up parsing and make the regexp easier to read. – strager Jan 5 '09 at 8:48
Good one, I always seem to forget about ? – Unkwntech Jan 5 '09 at 8:55
-1 for it would allow 1,04400.00 (more than three digits after a ','). See my completed answer for a more robust regex – VonC Jan 5 '09 at 9:01
I think it's better to just strip the , anyway as they likely will be irrelivent to the actual use anyway. – Unkwntech Jan 5 '09 at 9:13
show 1 more comment
vote up 0 vote down

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

link|flag
+1 for the + and - – some Jan 5 '09 at 8:36
However, the dot matches all characters, like A, B, comma, etc... you want to escape the dot like this: ^[-+]?\d*\.?\d*$ – some Jan 5 '09 at 8:40
This will not match numbers in the following notation: 1,000.00 – Unkwntech Jan 5 '09 at 8:43
Unkwnteck: And not 1,0 that is what my country uses, or 1E10. But if that matters to the original poster or not I don't know. – some Jan 5 '09 at 9:16
vote up 0 vote down

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.

^\d+(\.\d{1,2})?$

Can ensure a number with one or two decimals, but would not work with 34. (dot without decimal)

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:

[-+]?(?:\d(\,?(?>\d{3}[.,]))?)*(?:\.\d*)?

Meaning, if you are using a ,, do so only if it is followed with 3 digits (and then another , or a dot for decimal values. That enforces digital grouping, even though, as pointed out by Paul in the comments, there are locale with more than three digits after a comma...

link|flag
Correct: that is why I asked about the format. – VonC Jan 5 '09 at 8:47
Not all locales have 3 digits after a comma ... – Paul Jan 5 '09 at 10:02
True, that is why I asked about the format (bis ;) ) – VonC Jan 5 '09 at 10:08
vote up 0 vote down

You can also use the "isFinite" function:

http://www.w3schools.com/jsref/jsref_isFinite.asp

link|flag
vote up 0 vote down

this expression takes single space also at the start... which is not valid

link|flag
vote up -2 vote down

'^[0-9]*$'

link|flag
Don't forget - he also wants decimal '.' character – Marc Novakowski Jan 5 '09 at 8:19
That can also be a comma "," depending on what country you live in. – some Jan 5 '09 at 8:35
vote up -2 vote down

If you want decimals, this should work:

/^(?:\d+\.?)|(?:\d*\.\d+)$/
link|flag
This will not match numbers in the following notation: 1,000.00 – Unkwntech Jan 5 '09 at 8:41

Your Answer

Get an OpenID
or
never shown

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