Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a regular expression that validates a number, but doesn't require a digit after the decimal. ie.

123
123.
123.4

would all be valid

123..

would be invalid

Any would be greatly appreciated!

share|improve this question

4 Answers

Use the following:

/^\d+\.?\d*$/
  • ^ - Beginning of the line;
  • \d+ - 1 or more digits;
  • \.? - An optional dot (escaped, because in regex, . is a special character);
  • \d* - 0 or more digits (the decimal part);
  • $ - End of the line.
share|improve this answer
Added 3 seconds after mine, yet gets all the upvotes... – OrangeDog Aug 24 '12 at 21:49
@OrangeDog, your original matches more than might be desired. e.g. 'cow3.45tornado' ;) – S. Albano Aug 24 '12 at 21:50
@S. Albano, OrangeDog's original regex,\d+\.?\d*, would have matched '3.45' in 'cow3.45tornado'! – Hauns TM Aug 24 '12 at 21:58
Yes, my point was that it might not be a desired behavior given the set of examples Trish gave. OrangeDog then added the second regex, which improved his answer and match that of João, who was getting the upvotes. – S. Albano Aug 27 '12 at 15:19
/\d+\.?\d*/

One or more digits, optional period, zero or more digits.

Depending on your usage or regex engine you may need to add start/end line anchors:

/^\d+\.?\d*$/
share|improve this answer

Try this regex:

\d+\.?\d*

\d+ digits before optional decimal
.? optional decimal(optional due to the ? quantifier)
\d* optional digits after decimal

share|improve this answer
Nope, that one does not match 123. – Bart Kiers Aug 24 '12 at 21:44
Thanks for the note. Modified my regex. – Kash Aug 24 '12 at 21:46
Indeed, but now you just edited it into what is already posted by someone else. Consider just removing yet another "correct" answer. – Bart Kiers Aug 24 '12 at 21:48

What language? In Perl style: ^\d+(\.\d*)?$

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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