Reputation: 43
I need a regex to validate data has been entered in the following format: 22:33.
Upvotes: 4
Views: 4717
Reputation: 4368
Since you don't specify any particular regex type or where it might occur in input; this is an example [0-9][0-9]:[0-9][0-9]
.
If you want to match the whole input to just being exactly on that format ^[0-9][0-9]:[0-9][0-9]$
.. etc.
Upvotes: 1