我的 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>
块的情况下执行此操作?