我有一个格式为的字符串:
8月28日下午3:00
验证此字符串中是否包含有效时间和有效日期的最佳方法是什么?我的第一个想法是拆分字符串并使用两个正则表达式来匹配时间,另一个用于匹配该特定日期格式(缩写为月份日)。但是我对第二个正则表达式(特定日期格式的那个)有点麻烦。如何才能验证字符串的格式是否正确?
答案 0 :(得分:3)
你可以试试这个:
public boolean isValid( String dateStr ) {
// K: hour of the day in am/pm
// m: minute of a hour
// 'on': static text
// MMM: name of the month with tree letters
// dd: day of the month (you can use just d too)
DateFormat df = new SimpleDateFormat( "K:m a 'on' MMM dd", Locale.US );
try {
df.parse( dateStr );
return true;
} catch ( ParseException exc ) {
}
return false;
}
有关格式字符串的更多信息,请访问:http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
答案 1 :(得分:2)
使用java.text.SimpleDateFormat
。使用类似HH:mm aa 'on' MMM dd
的格式字符串。
您可能需要在格式字符串中添加yyyy
,并在输入中添加2012
。
答案 2 :(得分:1)
使用SimpleDateFormat
并确保它不使用lenient解析:
try {
DateFormat df = new SimpleDateFormat("h:mm a 'on' MMM dd", Locale.US);
df.setLenient(false);
Date dt = df.parse(s);
} catch (ParseException pe) {
// Wrong format
}