java filenames filter pattern [duplicate]

白昼怎懂夜的黑 提交于 2019-11-29 06:45:15

The String#matches() accepts regular expression patterns.

The regex variant of the "layman's" variant *2010*.txt would be .*2010.*\.txt.

So the following should work:

public boolean accept(File dir, String name) {
    return name.matches(".*2010.*\\.txt");
}

The double backslash is just there to represent an actual backslash because the backslash itself is an escape character in Java's String.

Alternatively, you can also do it without regex using the other String methods:

public boolean accept(File dir, String name) {
    return name.contains("2010") && name.endsWith(".txt");
}

Your best bet is likely to let ptrn represent a real regex pattern or to string-replace every . with \. and * with .* so that it becomes a valid regex pattern.

public boolean accept(File dir, String name) {
    return name.matches(ptrn.replace(".", "\\.").replace("*", ".*"));
}

You may need to scape your specific wild cards for those used in Java regex.

For instance to replace "*" you could use something like:

import java.io.*;

class Filter {
    public static void main ( String [] args ) {
        String argPattern = args[0];

        final String pattern = argPattern.replace(".","\\.").replace("*",".*");
        System.out.println("transformed pattern = " + pattern );
        for( File f : new File(".").listFiles( new FilenameFilter(){
                           public boolean accept( File dir, String name ) { 
                               return name.matches( pattern );
                           }
                        })){
             System.out.println( f.getName() );
        }
    }
}


$ls -l *ter.*
-rw-r--r--  1 oscarreyes  staff  1083 Jun 16 17:55 Filter.class
-rw-r--r--  1 oscarreyes  staff   616 Jun 16 17:56 Filter.java
$java Filter "*ter.*"
transformed pattern = .*ter\..*
Filter.class
Filter.java
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!