vote up 0 vote down star

I want to validate the value a user enters in a text box, so that it only enters float numbers. I'm not interested in range. How can I do this, considering also culture localization information (e.g. "." or "," as separators)?

flag

1 Answer

vote up 1 vote down check

My usual method is to use a RegexValidator with a validation expression of ^(\d+(\.\d*)?)|(\d*(\.\d+))$. You could ammend this to enable "." or ",": ^(\d+([\.,]\d*)?)|(\d*([\.,]\d+))$.

If you wanted to be strictly correct, you'd enable the correct validation expression for each culture.

Also note that you still need a RequiredFieldValidator if the value is compulsary.

link|flag
I'm not normally a fan of using a regex to test whether something is a number, but I'll concede that it has the nice advantage in this case of doing the same validation both client and server-side while only writing the logic once. – Joel Coehoorn Nov 6 '08 at 14:26

Your Answer

Get an OpenID
or

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