我有一个属性字符串(从文件加载),其中包含我的 ANT 构建脚本中的 & 字符。
如何转义该字符串,以便可以使用 xmltask 将其写入 xml 文件?
编辑:以下代码有效,但我不能用 & 替换 &,所以我必须使用“和”这个词:
<propertyregex property="prop"
input="${prop}"
regexp="&"
replace="and"
override="true"
global="true" />