本文介绍了如何比较java中的字符串日期格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我收到两种类型的输入。
I am getting input as two types.
1.String date1 = "07/01/2017";
2.String date2 = ""2017-01-12 00:00:00.0";
如何比较两种日期格式。如果我将格式设置为date1,我想执行一项功能。如果我获得date2格式,那么另一种功能。如何使用字符串比较两种日期格式。
How to compare two date formats. I want to perform one functionality if I get format as date1.If I get date2 format then Another functionality. How to compare two date formats using strings.
Ex:
if( date1.equals('dd/mm/yyyy')){
//perform functionality
}
推荐答案
使用RegEx:
String date1 = "07/01/2017";
if (date1.matches("^([0-9]{1,2}/){2}[0-9]{2,4}$")) {
System.out.println("Date in MM/dd/yyyy format");
} else if (date1.matches("^[0-9]{2,4}(-[0-9]{1,2}){2}\\s[0-9]{1,2}(:[0-9]{1,2}){2}\\.[0-9]{1,}$")) {
System.out.println("Date in yyyy-MM-dd hh:mm:ss.t format");
} else {
System.err.println("Unsupported Date format.");
}
这篇关于如何比较java中的字符串日期格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!