我的Ant构建脚本中有一个任务,用于向jsp文件中的所有src
标记的<script>
属性添加参数。
<replaceregexp flags="gi">
<fileset dir="${build.web.dir}/WEB-INF/jsp" >
<filename name="*.jsp"/>
</fileset>
<regexp pattern=".js">"/>
<substitution expression=".js?param=${pValue}">"/>
</replaceregexp>
我想将此扩展到所有jsps中
href
标记的所有<link rel="stylesheet">
属性。当我尝试添加另一个<regexp>
作为<regexp pattern=".css">"/>
<substitution expression=".css?param=${pValue}">"/>
在同一
<replaceregexp>
中,我得到了错误Only one regular expression is allowed.
如何在不使用多个
<replaceregexp>
块的情况下执行此操作? 最佳答案
您可以在一个表达式中执行此操作:
<regexp pattern=".(js|css)">"/>
<substitution expression=".\1?param=${pValue}">"/>
与捕获组中的js或css匹配,并在替换中使用捕获的值。
关于java - 在Ant replaceregexp任务中匹配多个模式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18461120/