我的Ant构建脚本中有一个任务,用于将src
属性的参数添加到jsp文件中的所有<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>
块的情况下执行此操作?
答案 0 :(得分:3)
您可以在一个表达式中执行此操作:
<regexp pattern=".(js|css)">"/>
<substitution expression=".\1?param=${pValue}">"/>
匹配捕获组中的js或css,并在替换中使用捕获的值。