Question

I am trying to find regular expression for my project. The regular expression should either accept values between 0 and 360 or empty(null) value.

Was it helpful?

Solution

Slightly simplified regex of @aelor

^(?:36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])?$

Regular expression visualization

Debuggex Demo

OTHER TIPS

you need this:

^(?:\s*|0|(?:36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9][0-9]|[1-9]))$
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top