Ant:如何在replaceregexp中使用属性值作为替换

时间:2012-05-13 18:52:01

标签: regex ant properties

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

看起来像是:

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

(这不起作用,只是为了展示我需要的东西)

some.property位于名为test.properties

的文件中

2 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分:0)

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