I am trying to validate a comma separated list for numbers 1-8.
i.e. 2,4,6,8,1
is valid input.
I tried [0-8,]*
but it seems to accept 1234
as valid. It is not requiring a comma and it is letting me type in a number larger than 8. I am not sure why.