I have been trying to solve the following issue:
- Match all numbers in range 20 to 999
- Increments of 5
- No decimal point
- Greater or equal to 20.
Upon research came up with the following:
(?=^([2-9]\d|[1-9]\d{2,})$)(?=^\d*[05]$)
(strangely, in the regex tester I am using, the expression doesn't always work).
or
(?=^[2-9]\d+)(?=\d*[05]$)
I think this case the range is limited 20 to 99 only.
Can you help, please?