当前位置:   article > 正文

【Java】正则表达式匹配字符串中的时间戳_正则表达式匹配时间戳

正则表达式匹配时间戳
package src.regularExpression;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class TimeUtil {


    public static void main(String[] args) {
        String[] temp;
        String str = "\n" +
                "2020-10-22T07:56:07.867Z,,,,asdasdasn" +           
                "2020-10-22T07:56:22.874Z,,,,a's'da's" +              
                "2020-10-22T07:59:33.348Z,,b";
        String regex = "[0-9]{4}[-][0-9]{1,2}[-][0-9]{1,2}";
               // String regex = "[0-9]{4}[-][0-9]{1,2}[-][0-9]{1,2}[T][0-9]{1,2}[:][0-9]{1,2}[:][0-9]{1,2}[.][0-999]{1}";

        Pattern p = Pattern.compile(regex);
        Matcher matcher = p.matcher(str);
        if (matcher.find()) {
            System.out.println(matcher.groupCount());
            System.out.println(matcher.group(0));
        }
        temp = str.split(matcher.group(0));
        for (String i:temp
             ) {
            System.out.println(i);
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/119325
推荐阅读
相关标签
  

闽ICP备14008679号