Regex for AM PM time format for jquery

后端 未结 6 441
耶瑟儿~
耶瑟儿~ 2020-12-09 17:16

I am being frustrated by a regular expression to mask the input field. I want to Limit input to hh:mm AM|PM format and I can\'t get this regex to work.

I use this

6条回答
  •  时光取名叫无心
    2020-12-09 17:54

    First of all, if you using it for input field, you should never let users input date or time information using text fields and hoping it will be in strict format.

    But, if you insist:

    /^(0?[1-9]|1[012])(:[0-5]\d) [APap][mM]$/
    

    This regex will validate time in AM/PM format.

提交回复
热议问题