0
我的Ant構建腳本中有一個任務,用於將參數添加到src
屬性中,以將所有<script>
標記添加到jsp文件中。在Ant中替換多個模式replaceregexp任務
<replaceregexp flags="gi">
<fileset dir="${build.web.dir}/WEB-INF/jsp" >
<filename name="*.jsp"/>
</fileset>
<regexp pattern=".js">"/>
<substitution expression=".js?param=${pValue}">"/>
</replaceregexp>
我想這個擴展至所有的JSP標籤<link rel="stylesheet">
所有href
屬性。當我試圖在同一<replaceregexp>
多加一個<regexp>
作爲
<regexp pattern=".css">"/>
<substitution expression=".css?param=${pValue}">"/>
,我得到錯誤 Only one regular expression is allowed.
我怎麼能做到這一點,而無需使用多個<replaceregexp>
塊?
通過這種方式是領先的。在旨在匹配'。'的模式中。字符?如果是這樣,它需要逃脫。 –
它的工作原理!謝謝greg-449 – Shoreki