my current regex:
/^[0-9]{3}$/
This will match if the value is an integer with a length of 2.
I need to expand this a bit further by matching only values between 0 - 32.
0 <- not match
1 <- match
2 <- match
...
29 <- match
30 <- match
32 <- not match
33 <- not match
Test your regex: https://regex101.com/