Regex for time in hh:mm am/pm format

后端 未结 5 1946
暖寄归人
暖寄归人 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 10:55

      String regex = "([01]?[0-9]|2[0-3]):[0-5][0-9]";
      
    

    This will work for the 24 hours validation

提交回复
热议问题