The first number is within the range of 0 and 223:
`^(1?\d{1,2}|2([0-1]\d|2[0-3]))`
Explanation:
- `^` matches the start of the string
- `(1?\d{1,2}|2([0-1]\d|2[0-3]))` matches either:
- `1?\d{1,2}`: a number between 0 and 199 (optional 1 followed by 1 or 2
Show more…