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.

Était-ce utile?

La 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

Autres conseils

you need this:

^(?:\s*|0|(?:36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9][0-9]|[1-9]))$
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top