Regex for time in hh:mm am/pm format

后端 未结 5 1947
暖寄归人
暖寄归人 2020-11-29 10:32

I need to make strict validation of input for a school project, time in format HH:MM am/pm. So far i\'ve got this RegEx expression:

(([01]?[0-9]):([0-5][0-9         


        
5条回答
  •  温柔的废话
    2020-11-29 11:05

    you can use:

    \b((1[0-2]|0?[1-9]):([0-5][0-9]) ([AaPp][Mm]))
    EDIT:         ^ changed this from 0-1 to not accept 00:00
    

提交回复
热议问题