(누군가가 사용할 수있는 경우 게시).
나는 OP보다 조금 더 복잡한 문제에 대한 해결책을 찾고 있었다-모든 항목을 숫자로 같은 숫자로 바꾸는 것
예를 들어 다음과 같이 교체합니다.
<row id="1" />
<row id="2" />
<row id="1" />
<row id="3" />
<row id="1" />
이로 인해:
<row id="2" />
<row id="3" />
<row id="2" />
<row id="4" />
<row id="2" />
온라인에서 솔루션을 찾을 수 없으므로 groovy에서 내 스크립트를 작성했습니다 (조금 못 생겼지 만 작업을 수행합니다).
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"