(Đăng trong trường hợp ai đó có thể sử dụng nó).
Tôi đang tìm giải pháp cho một vấn đề phức tạp hơn một chút so với OP - thay thế MỌI sự xuất hiện của điều gì đó bằng số thứ tự bằng số tăng dần
Ví dụ: Thay thế một cái gì đó như thế này:
<row id="1" />
<row id="2" />
<row id="1" />
<row id="3" />
<row id="1" />
Bằng cách này:
<row id="2" />
<row id="3" />
<row id="2" />
<row id="4" />
<row id="2" />
Không thể tìm thấy giải pháp trực tuyến vì vậy tôi đã viết kịch bản của riêng mình trong groovy (hơi xấu nhưng thực hiện được công việc):
def replace_inc(String text, int startingIndex, String findTemplate) {
assert findTemplate.contains('_') : 'search template needs to contain "_" placeholder'
assert !(findTemplate.replaceFirst('_','').contains('_')) : 'only one "_" placeholder is allowed'
assert !text.contains('_____') : 'input text should not contain "______" (5 underscores)'
while (true) {
findString = findTemplate.replace("_",(startingIndex).toString())
if (!text.contains(findString)) break;
replaceString = findTemplate.replace("_", "_____"+(++startingIndex).toString())
text = text.replaceAll(findString, replaceString)
}
return text.replaceAll("_____","")
}
findTemplate = 'Row="_"'
path = /C:\TEMP\working_copy.txt/
startingIndex = 0
f = new File(path)
outText = replace_inc(f.text,startingIndex,findTemplate)
println "Results \n: " + outText
f.withWriter { out -> out.println outText }
println "Results written to $f"