正则表达式的应用

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());
        }
        
 }

 

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

markdown 正则表达式模式片段

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

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

asp.net 使用正则表达式验证包含打开/关闭括号片段的属性字符串

攻破难啃的骨头-正则表达式(转)

正则表达式的贪婪和非贪婪模式