正则表达式的应用

Posted more harder, the more fortunat

tags:

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

public static void main(String[] args) {
        
        String str = "123我是456张三789的学生";
        String regex2 = "\\d{1,}";
        Pattern p = Pattern.compile(regex2);
        Matcher matcher = p.matcher(str);
        while(matcher.find()){
            System.out.println(matcher.group());
        }
        
 }

 

以上是关于正则表达式的应用的主要内容,如果未能解决你的问题,请参考以下文章