public class CodeTest {
    public static void main(String[] args) {

        String regex = "D:\\\\mycode\\\\test\\\\mytext_([0-9]{8}).txt";

        String fileName_1 = "D:\\mycode\\test\\mytext_20191122.txt";

        Pattern p = Pattern.compile(regex);
        Matcher m = p.matcher(fileName_1);
        if(m.find()){
            System.out.println("target :"+m.group(1));
        }
    }
}


Pattern -》java代码中的正则表达式对象

p.matcher(str)-》str是需要被匹配的文本内容,并返回一个Matcher 对象,对象中包含众多返回结果在其中。

m.find()-》返回匹配结果布尔(true|false)值.

m.groupCount()-》用以返回匹配部分字符串数组。注意需要返回的部分必须通过()包裹起来,作为一个整体。

m.group(1)-》返回想要提取的字符串。

 

matcher.group(int)方法即可实现java正则表达式从文本中提取内容。但是核心重点是需要被提取的部分必须在写正则表达式的时候用小括号包裹起来。这个在很多的资源中都没讲。