如何在替换正则表达式中指定属性




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

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

下面是一个示例:

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

我问的真的很简单。 如何使用 ant 脚本中的 replaceregexp 设置和取消设置属性文件中的属性。就是这样。

您必须将实体用于">

&#34;

并逃离点

.

匹配看起来

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

括号是不必要的。

相关内容

  • 没有找到相关文章

最新更新