在我的 ant 构建文件中,我有一个包含版本的属性“版本”。前任。2.5.17.230
现在,我正在使用propertyregex
ant-contrib 替换所有的 '.' (点)带有下划线的字符。我写的声明如下:
<propertyregex property="Version" input="${Version}" regexp="." replace="_" global="true" />
但是,它不起作用。我什至徒劳地尝试了这些:
regexp="\."
和regexp="[.]"
有人可以帮忙吗?
谢谢