0

我需要用属性文件中的值替换正则表达式匹配。

它看起来像:

<replaceregexp 
        file="test.txt"
        match="blabla" 
        replace="some.property"
        >
</replaceregexp>

(那行不通,只是为了显示我需要的东西)

some.property 在名为 test.properties 的文件中

4

2 回答 2

2

我认为问题在于您使用的是 some.property 而不是 ${some.property}。这就是我让它工作的方式。

于 2012-05-13T19:36:37.420 回答
0

使用loadproperties任务从文件加载属性。

于 2012-05-13T19:32:47.317 回答