我需要用属性文件中的值替换正则表达式匹配。
它看起来像:
<replaceregexp
file="test.txt"
match="blabla"
replace="some.property"
>
</replaceregexp>
(那行不通,只是为了显示我需要的东西)
some.property 在名为 test.properties 的文件中
我需要用属性文件中的值替换正则表达式匹配。
它看起来像:
<replaceregexp
file="test.txt"
match="blabla"
replace="some.property"
>
</replaceregexp>
(那行不通,只是为了显示我需要的东西)
some.property 在名为 test.properties 的文件中
我认为问题在于您使用的是 some.property 而不是 ${some.property}。这就是我让它工作的方式。
使用loadproperties任务从文件加载属性。