ANT条件任务与文件中的正则表达式匹配

时间:2015-04-29 20:11:22

标签: regex ant

我正在阅读ANT Conditions task并尝试根据一个文件中找到的字符串找出如何使用它。

我有一个带有一系列replaceregexp目标的ANT版本,它可以在目录中的任何.htm文件上运行。所以我指定文件集目录,然后是正则表达式模式和替换,并在该目录中的所有.htm文件中进行替换。例如:

  <target name="title" description="convert title">
   <replaceregexp byline="false" flags="gs">
     <regexp pattern="(&lt;p.*?)(TopicTitle&gt;.*?)(&gt;)(.*?)(&lt;/span.*?/p&gt;)"/>
     <substitution expression="&lt;title&gt;\4&lt;/title&gt;"/>
     <fileset dir=".">
     <include name="*.htm"/>
     </fileset>
   </replaceregexp> 
 </target>

现在我要做的是使用正则表达式查看.htm文件中是否有某个单词,如果匹配则设置条件。例如:

<condition property="isConcept">
  <matches pattern="&lt;body.*(?=ConceptStyle).*&lt;/body&gt;" string=" "/>
</condition>

因此,如果字符串ConceptStyle与该正则表达式匹配,则设置属性isConcept

我的问题是:我在该任务的string=" "部分放了什么?或者我如何给它目录/文件来搜索匹配?

更新:

好的,这是Manouti在下面回答的新代码:

<target name="setProperties">
  <loadfile property="contents" srcFile="C:\Developer\SVN\trunk\WordTemplates\conversions\Conversion_Demo.htm"/>
  <condition property="isConcept">
  <matches pattern="&lt;body.*(?=ConceptStyle).*&lt;/body&gt;" string="${contents}"/>
   </condition>
</target>

要测试属性是否已设置,我的理解是我可以将unless添加到另一个目标,如下所示:

<!-- sticking in a replace task to test if condition is set -->
<target name="conditionTest" unless="isConcept">    
  <replaceregexp byline="false" flags="gs">
     <regexp pattern="conbody"/>
     <substitution expression="BOOOO"/>
     <fileset dir=".">
     <include name="*.htm"/>
     </fileset>
   </replaceregexp> 
 </target>

到目前为止,这不起作用,也就是说,包含unless="isConcept"的目标正在运行(“BOOOO”出现在结果中),而如果设置了属性,则不应该触发。

我已将unless用于其他目的,但仅限于基于启动ANT构建的命令中的标志的情况。然而,从我所读到的,这看起来应该有效。我有什么不对?

更新II

根据Stefan的回答,这是很好的工作:

  <target name="Concept3" description="Insert closing body tag" depends="Concept2,Concept1,Concept0">
   <replaceregexp byline="false" flags="gs">
     <regexp pattern="(&lt;)(/body)(&gt;)"/>
     <substitution expression="\1\/conbody&gt;"/>
     <fileset dir=".">
     <include name="*.htm"/>
    <not>
     <contains text="TaskChar"/>
     </not>
     <not>
     <contains text="RefChar"/>
     </not>
     </fileset>
   </replaceregexp> 
 </target>

 <target name="Task3" description="" depends="Task2,Task1,Task0">
   <!-- Insert closing body tag-->
   <replaceregexp byline="false" flags="gs">
     <regexp pattern="(&lt;)(/body)(&gt;)"/>
     <substitution expression="\1\/taskbody&gt;"/>
     <fileset dir=".">
     <include name="*.htm"/>
     <not>
     <contains text="ConceptStyle"/>
     </not>
     <not>
     <contains text="RefChar"/>
     </not>
     </fileset>
   </replaceregexp> 
 </target>

 <target name="Ref3" description="" depends="Ref2,Ref1,Ref0">
   <!-- Insert closing body tag-->
   <replaceregexp byline="false" flags="gs">
     <regexp pattern="(&lt;)(/body)(&gt;)"/>
     <substitution expression="\1\/refbody&gt;"/>
     <fileset dir=".">
     <include name="*.htm"/>
      <not>
     <contains text="ConceptStyle"/>
     </not>
     <not>
     <contains text="TaskChar"/>
     </not>
     </fileset>
   </replaceregexp> 
 </target>

每个目标都在一个文件集上运行,该文件集过滤了一个字符串,该字符串不得出现在文件中,以便目标对其起作用。有三种样式类型名称,我的源文件只包含三种样式中的一种(按设计),现在这会触发ANT构建以根据它的类型不同地处理每个文件。大。

1 个答案:

答案 0 :(得分:2)

首先,它看起来并不像你需要一个正则表达式,一个简单的<contains>可能会这样做 - 除非存在“ConceptStyle”出现在正文之外的文件。

AFAIU您希望对所有文件执行替换,除非它们包含ConceptStyle。我不建议在condition上使用target和属性,而是建议过滤fileset

<replaceregexp byline="false" flags="gs">
  <regexp pattern="conbody"/>
  <substitution expression="BOOOO"/>
  <fileset dir=".">
    <include name="*.htm"/>
    <not>
      <contains text="ConceptStyle">
    </not>
  </fileset>
</replaceregexp>

如果您确实需要正则表达式,请改用<containsregex>