Regular expression for matching HH:MM time format

前端 未结 19 2391
甜味超标
甜味超标 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:53

    The below regex will help to validate hh:mm format

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

提交回复
热议问题