我需要根据定义到属性文件中的匹配/替换行来处理和替换文件中的值。
<replace dir="${build.dir}" replacefilterfile="replmap.properties">
<include name="**/*.js"/>
<include name="**/*.html"/>
</replace>
问题是我想限制这些替换仅适用于不包含某些字符串值的行(匹配之前或之后)。
我阅读了有关replaceregexp
搜索替代解决方案的文档,但我看不到从属性文件中获取匹配/替换的方法。