正则表达式在线教程

Posted

tags:

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

教程:http://deerchao.net/tutorials/regex/regex-1.htm

在线调试:http://regexr.com/

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

public class TestPattern {
    public static void main(String args[]) {
        
        Pattern pattern = Pattern.compile("(\\w+)(\\d+)");
        Matcher m=pattern.matcher("regexTest30-Mins");
        
        while (m.find()) {
            System.out.println(m.group()); //regexTest123
            System.out.println(m.group(0));//regexTest
            System.out.println(m.group(1));//30
        }
    }
}

 

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

text 正则表达式片段

markdown 正则表达式模式片段

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

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

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

包含正则表达式分隔符的简单且经过测试的在线正则表达式在 C# 代码中不起作用