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?
|
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? |
||||
|
|
|
|||||||
|
|
My favorite: www.regular-expressions.info/numericranges.html |
||||
|
|
|
This will allow decimal numbers (or whole numbers) that don't start with zero:
If you want to allow numbers that start with zero, you can do :
|
||||
|
|