码迷,mamicode.com
首页 > 编程语言 > 详细

java正则表达式

时间:2020-03-22 17:30:51      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:att   正则   stat   empty   java   amp   span   turn   pat   

这是一个检测时间格式是否正确的方法,例如2020-03-22

 1 public static boolean isValidateRunningDate(String input) {
 2         //正则匹配
 3         Matcher matcher = null;
 4         boolean result = false;
 5         String regex = "[0-9]{4}-[0-9]{2}-[0-9]{2}";
 6         if (input != null && !input.isEmpty()) {
 7             Pattern pattern = Pattern.compile(regex);
 8             matcher = pattern.matcher(input);
 9         }
10         if (matcher != null) {
11             result = matcher.matches();
12         }
13         return result;
14     }

 

java正则表达式

标签:att   正则   stat   empty   java   amp   span   turn   pat   

原文地址:https://www.cnblogs.com/fxw-learning/p/12546803.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!