Search code examples
asp.net-mvcregexxval

Regex match numerical range


I am trying to write a simple regex to match a percentage value range 1%-100%

Is there a better way to write this?

^([1-9]|[1-9][0-9]|100)%$

Solution

  • You can make it a bit shorter:

    ^([1-9][0-9]?|100)%$