I am trying to match a regex expression in a #####-## format where # is any digit from 0-9.
The -## suffix can be a single or double digit such as -01, -12, -1, -2, -9,etc. except -00 and -0.
So far I have:
"^[0-9]{6}(-(?!00)[0-9]{1,2})$"
Which works great for everything except something like 123456-0
How to add that exclusion?