I would like a javascript regular expression that will match time using the 24 hour clock, where the time is given with or without the colon.
For example, I would like to match time in the following formats:
"0800", "23:45", "2345"
but that would not match invalid times such as
"34:68" or "5672"