I am a new user, so excuse if this question should be answered in it's original post: regex match numbers greater or equal than 20, by increments of 5, range 20 to 999
Neverteless, here is the current question:
- Match all numbers equal or greater then 20 (no upper limit)
- Increments of 5
- No decimal point
- Leading zeros shouldn't be allowed
With stackoverflow user YMI response on another post:
(\d{2}|[2-9])[05]
and user nhahtdh
^([2-9]|[1-9]\d)[05]$
However I would like to explorer the option of not having upper limit and the leading zeros not being allowed also.