正则校验时间的准确性和格式正确性
发布网友
发布时间:2022-12-26 20:19
我来回答
共1个回答
热心网友
时间:2023-10-17 01:10
时间校验的准确性和格式正确性:JudgeDateFormatUtil
/**
* @Author: feijq
* @Description: yyyy-MM-dd HH:mm:ss格式时间校验:
* @Date: 2019/7/10 10:35
**/
public static boolean dateFormat(String str) {
// 验证日期格式为YYYY-MM-DD的正则表达式为
String regex = "(([0-9]{3}[1-9]|[0-9]{2}[1-9][0-9]{1}|[0-9]{1}[1-9][0-9]{2}|[1-9][0-9]{3})-(((0[13578]|1[02])-(0[1-9]|[12][0-9]|3[01]))|((0[469]|11)-(0[1-9]|[12][0-9]|30))|(02-(0[1-9]|[1][0-9]|2[0-8]))))|((([0-9]{2})(0[48]|[2468][048]|[13579][26])|((0[48]|[2468][048]|[3579][26])00))-02-29)$";
return str.matches(regex);
}
// public static void main(String[] args) {
// String str = "2019-07-31";
// boolean b = dateFormat(str);
// System.out.println(str+":"+b);
//
// String str1 = "2019-07-10 23:59:10";
// boolean b1 = datetimeFormat(str1);
// System.out.println(str1+":"+b1);
//
// String str2 = "2019/07/10";
// boolean b2 = dateFormatSlash(str2);
// System.out.println(str2+":"+b2);
//
// String str3 = "2019/07/10 12:53:59";
// boolean b3 = datetimeFormatSlash(str3);
// System.out.println(str3+":"+b3);
// }