我使用正則表達式如下表達:正則表達式匹配文件名
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));
}
}
這工作正常filename
像abc.txt
但如果沒有與名稱abc1.txt
上述方法是給abc2.txt
的任何文件。如何使正則表達式條件或改變(m.group(2) == null ? "_copy" + 1 : (Integer.parseInt(m.group(2)) + 1))
,使其返回我abc1_copy1.txt
爲新的文件名,而不是abc2.txt
等等類似abc1_copy2
等
只要改變 - '(的Integer.parseInt(m.group(2))+ 1))''到(m.group(2)+ 「_copy」 + 1)' –
@RohitJain這不會工作,因爲它會繼續添加'_copy1' – user850234