Regex validation for integers, with leading zeros

By | October 1, 2015

Below script will validate the numbers using regex

it will allow
0
1

it will not allow

00,0000,01, 02 etc.
Regex using javascript

Regex using PHP