我需要替换文件中的多行字符串,如下所示:
startString
bla bla bla
...
endString
通过蚂蚁替换正则表达式。蚂蚁代码:
<copy file="${file}" tofile="${newFile}" overwrite="true">
<filterchain>
<replaceregex pattern="startString(.+)endString" replace="zzz" flags="gmi" byline="true"/>
</filterchain>
</copy>
如果替换文本是单行 - 一切正常,但当文本是多行时 - replaceregex 不起作用。我应该在我的代码中修复什么?