Regular expression for matching HH:MM time format

前端 未结 19 2626
甜味超标
甜味超标 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 17:51

    Your original regular expression has flaws: it wouldn't match 04:00 for example.

    This may work better:

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

提交回复
热议问题