1

我正在使用下面的正则表达式:

Pattern p = Pattern.compile("(.*?)(\\d+)?(\\..*)?");

while(new File(fileName).exists())
{
    Matcher m = p.matcher(fileName);
    if(m.matches()) { //group 1 is the prefix, group 2 is the number, group 3 is the suffix
        fileName = m.group(1) + (m.group(2) == null ? "_copy" + 1 : (Integer.parseInt(m.group(2)) + 1)) + (m.group(3)==null ? "" : m.group(3));
    }
}

这适用于filenamelikeabc.txt但如果有任何文件名称abc1.txt为上述方法abc2.txt。如何使正则表达式条件或更改(m.group(2) == null ? "_copy" + 1 : (Integer.parseInt(m.group(2)) + 1)),以便它返回我abc1_copy1.txt作为新的文件名,而不是abc2.txt等等等等abc1_copy2

4

2 回答 2

0
Pattern p = Pattern.compile("(.*?)(_copy(\\d+))?(\\..*)?");

while(new File(fileName).exists())
{
    Matcher m = p.matcher(fileName);
    if (m.matches()) {
        String prefix = m.group(1);
        String numberMatch = m.group(3);
        String suffix = m.group(4);
        int copyNumber = numberMatch == null ? 1 : Integer.parseInt(numberMatch) + 1;

        fileName = prefix;
        fileName += "_copy" + copyNumber;
        fileName += (suffix == null ? "" : suffix);
    }
}
于 2013-01-18T19:41:47.683 回答
0

我不是一个 java 人,但一般来说,你应该使用库函数/类来解析文件名,因为许多平台对它们有不同的规则。

看: http ://people.apache.org/~jochen/commons-io/site/apidocs/org/apache/commons/io/FilenameUtils.html#getBaseName(java.lang.String )

于 2013-01-18T19:21:12.713 回答