문제

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)%$
도움이 되었습니까?

해결책

You can make it a bit shorter:

^([1-9][0-9]?|100)%$
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top