java正则表达式

Posted fxw-learning

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java正则表达式相关的知识,希望对你有一定的参考价值。

这是一个检测时间格式是否正确的方法,例如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正则表达式的主要内容,如果未能解决你的问题,请参考以下文章

java 字符串替换

text 正则表达式片段

markdown 正则表达式模式片段

正则表达式匹配特定的 URL 片段而不是所有其他 URL 可能性

java正则表达式去除html标签

循环通过 python 正则表达式匹配