当路径和文件名都包含通配符时,列出与正则表达式匹配的文件路径

时间:2012-07-19 06:44:46

标签: java regex file

我们的系统允许文件夹和文件都采用正则表达式格式。例如

/dir1*/abcd/efg.? is legal. 

/dir* could match /dira and also /dirb/cde

我想查找与此模式匹配的所有文件。为了消除不必要的操作,我想获得根目录来启动文件列表和过滤。

有没有有效的方法来获取正则表达式路径模式的根目录?

几个测试用例:

/abc/def*/bc return /abc
/abc/def*    return /abc
/ab.c/def*   return /
/ab\.c/def*  return /ab.c

2 个答案:

答案 0 :(得分:3)

已编辑:已添加相对路径的处理

String path;
String root = path.replaceAll( "((?<=/)|((?<=^)(?=\\w)))(?!(\\w|\\\\\\.)+/.*).*", "" ) );

这是一个测试:

public static void main( String[] args ) throws IOException {
    String[] paths = {"/abc/def*/bc", "/abc/def*", "/ab.c/def*", "/ab\\.c/def*", "abc*", "abc/bc"};
    for ( String path : paths ) {
        System.out.println( path + " --> " + path.replaceAll( "((?<=/)|((?<=^)(?=\\w)))(?!(\\w|\\\\\\.)+/.*).*", "" ) );
    }
}

输出:

/abc/def*/bc --> /abc/
/abc/def* --> /abc/
/ab.c/def* --> /
/ab\.c/def* --> /ab\.c/
abc* --> 
abc/bc --> abc/

你可以从那里微调它。

答案 1 :(得分:0)

使用此正则表达式

^/([a-zA-Z]+[a-bA-Z0-9]+)/?.$

这将为您提供一个额外条件的根路径,第一个字母应该是一个字母

如果它也可以是数字,您只需使用 -

即可
^/([a-bA-Z0-9]+)/?.$