How can I validate the range 1-99 using a regex?

后端 未结 11 1269
忘掉有多难
忘掉有多难 2021-02-07 03:00

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

11条回答
  •  悲&欢浪女
    2021-02-07 04:03

    This is the simplest possible, I can think of:

    ^([1-9][0-9]?)$

    Allows only 1-99 both inclusive.

提交回复
热议问题