私はかなり長い間、この問題を理解しようとしてきました。
次のように、文字列内のすべての URL を変更したいと思います。
int i = 0
string.for each occurrence of ("/some static part/" + ${this could be anything}) {
replace with "/some other static part" + i + "/some other static part/"
i++
}
それが私が説明できる最良の方法です。
URLの最後の部分が変わり、それを変更するURLも変わるため、replaceAllを使用できません。
何か案は?