我有一個類,其中我比較兩個數組,我需要對結果應用模式,使得它忽略了日期。我做了對正則表達式和屬性文件的一些研究,並與正則表達式的屬性文件
public class writeconfig {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Properties property = new Properties();
String datepattern = "(0?[1-9]|[12][0-9]|3[01])/(0?[1-9]|1[012])/((19|20)\\d\\d)";
Pattern pattern = Pattern.compile(datepattern);
property.setProperty("pattern_use", pattern);
}
}
現在來了,事實證明,該套物業的功能,只允許引用輸入,我不能一個模式儲存在裏面。有沒有辦法做到這一點?非常感謝幫助。
爲什麼你需要在屬性文件中存儲模式? 你可以保存日期模式 – Udy
@udy我需要。這樣我可以在將來添加更多需要在比較方法中修改的功能。 – newtoprogramming