I would like to use regular expression to match only positive integers at least 2 but no more than 4 digits. I know that I can do that with this regex: ^\d{2,4}$
Now, I want to exclude 00, 000, 0000 and also leading zeros such as 02, 003, 0001. Any suggestion?
Thanks in advance.