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 an regular expression pattern to only accept positive whole numbers. It can also accept a single zero.

I do not want to accept decimals, negative number and numbers with leading zeros.

Any suggestions?

share|improve this question

6 Answers

up vote 26 down vote accepted
^(0|[1-9][0-9]*)$
share|improve this answer
Should it include an optional comma, in case the format allows it (like 1,000,000)? – Ben Nov 14 '08 at 16:06
No, It should not accept commas. – Michael Kniskern Nov 14 '08 at 16:23
This would do the job: ^(0|[1-9][0-9]*|[1-9][0-9]{0,2}(,[0-9]{3,3})*)$ – Federico A. Ramponi Nov 14 '08 at 16:27

"[1-9][0-9]*|0"

I'd just use "[0-9]+" to represent positive whole numbers.

share|improve this answer
/([1-9][0-9]*)|0/
share|improve this answer

This will allow decimal numbers (or whole numbers) that don't start with zero:

^(([1-9]*)|(([1-9]*).([0-9]*)))$

If you want to allow numbers that start with zero, you can do :

^(([0-9]*)|(([0-9]*).([0-9]*)))$
share|improve this answer
/^0|[1-9]\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.