1


我不知道如何为 my.property=anything * 指定通配符????

我还需要知道如何设置将 my.property 设置为空值的替换?

这是一个例子:

   <replaceregexp file="./project.properties"
                        match='someproperty.value="(.*)"'
                        replace='somepropert.value=othervalue'
                        byline="false">         
    </replaceregexp>

我要问的真的很简单。如何使用 ant 脚本中的 replaceregexp 在属性文件中设置和取消设置属性。而已。

4

1 回答 1

0

您必须将实体用于“

&#34;

并逃脱点

\.

比赛看起来

match='someproperty\.value=&#34;.*&#34;'

括号是不必要的。

于 2012-05-17T17:33:04.947 回答