gpt4 book ai didi

javascript - 为 YYYY-MM-DD HH :MM 编写 JS 正则表达式

转载 作者:行者123 更新时间:2023-12-03 16:48:35 27 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to write regex to validate dates?

(7 个回答)



JavaScript or jQuery regex method and statement to validate a sting is yyyy-mm-dd and one the is hh:mm AM/PM

(2 个回答)


6年前关闭。




我是 JS 新手,我需要验证表单中的日期。日期字段是 常规文本字段 .日期字段的名称称为“日期”。如何使用 JS 中的简单正则表达式验证日期是否来自 YYYY-MM-DD HH:MM 格式?

谢谢

最佳答案

尝试这种方式来验证您在 YYYY-MM-DD HH:MM 中的日期格式

   var re = /[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1]) (2[0-3]|[01][0-9]):[0-5][0-9]/;
var str = '2014-02-04 12:34';
var m;

while ((m = re.exec(str)) != null) {
if (m.index === re.lastIndex) {
re.lastIndex++;
}
// View your result using the m-variable.
// eg m[0] etc.
}

enter image description here

查看演示: https://www.regex101.com/r/rT6vJ4/1

关于javascript - 为 YYYY-MM-DD HH :MM 编写 JS 正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28126345/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com