4

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

/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
4

2 回答 2

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/

你可以从那里微调它。

于 2012-07-19T06:50:29.540 回答
0

使用这个正则表达式模式

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

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

如果它也可以是一个数字,你可以简单地使用 -

^/([a-bA-Z0-9]+)/?.$
于 2012-07-19T06:58:08.280 回答