我开始使用正则表达式进行时间验证, 它应该检测如下字符串:
5s
3h5m
5h3m02s
05:03:02
05:03
4
我目前的正则表达式适用于所有这些但只有一个: 05:03 。它会将 05 检测为,将 03 检测为秒,但它应该是05分钟......我不知道如何编辑我的代码来执行此操作。
var reTime =
/^(?:PT)?(?:(\d{1,2})[:.hH])?(?:(\d{1,4})[:.mM])?(?:(\d{1,6})[sS]?)?$/;
答案 0 :(得分:-1)
测试一下:
var hasTimeFormat = function (input) {
var timeFormat = /([0-9]{2})\:([0-9]{2})\:([0-9]{2})\,([0-9]{3})$/;
if (typeof String.prototype.trim !== 'function') {
String.prototype.trim = function () {
return input.replace(/^\s+|\s+$/g, '');
}
}
return timeFormat.test(input.trim());
}
这很有效(例如对于" 05:03:02,677")如果你想要添加更多东西,你可以轻松添加。