Regular expression for matching HH:MM time format

前端 未结 19 2628
甜味超标
甜味超标 2020-11-22 17:25

I want a regexp for matching time in HH:MM format. Here\'s what I have, and it works:

^[0-2][0-3]:[0-5][0-9]$

This matches everything from

19条回答
  •  悲&欢浪女
    2020-11-22 18:10

    Mine is:

    ^(1?[0-9]|2[0-3]):[0-5][0-9]$

    This is much shorter

    Got it tested with several example

    Match:

    • 00:00
    • 7:43
    • 07:43
    • 19:00
    • 18:23

    And doesn't match any invalid instance such as 25:76 etc ...

提交回复
热议问题