正则表达式
摘要:
日期判断方法一:String str = "1983-07-27";String pat = "\\[1-9]{4}-\\[0-12]-\\[1-31]";Pattern p = Pattern.compile(pat);Matcher m = p.matcher(str);if(m.matches()){ System.out.println("日期格式合法");}else{ System.out.println("日期格式不合法");}方法二://String对正则的支持boolean temp = " 阅读全文
posted @ 2012-03-19 10:47 亭子 阅读(173) 评论(0) 推荐(0) 编辑