Question

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)%$
Was it helpful?

Solution

You can make it a bit shorter:

^([1-9][0-9]?|100)%$
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top