So I am trying to find a smart way of writing down how to recognise this particular range of time:
HOUR: an hour with the formats HH:MM or HH:MM:SS and values between 08:31:12 and 23:21:10 (correct examples are: 08:31, 23:21:09, 12:54:51)
Do I really have to do through all the possibilities like (08":"31)(":"(1[2-9])|([3-5][0-9]) )? | (08":"3[2-9])(":" [0-5][0-9] )? | and so on... (pretty long)
Is there a smarter way to handle particular ranges like this example? Thanks guys