I need to validate some user input, to ensure a number entered is in the range of 1-99 inclusive. These must be whole (Integer) values
Preceeding 0 is permitted, but opt
^[0-9]{1,2}$
should work too (it'll will match 00 too, hope it's a valid match).