我正在阅读ANT Conditions task并尝试根据一个文件中找到的字符串找出如何使用它。
我有一个带有一系列replaceregexp目标的ANT版本,它可以在目录中的任何.htm文件上运行。所以我指定文件集目录,然后是正则表达式模式和替换,并在该目录中的所有.htm文件中进行替换。例如:
<target name="title" description="convert title">
<replaceregexp byline="false" flags="gs">
<regexp pattern="(<p.*?)(TopicTitle>.*?)(>)(.*?)(</span.*?/p>)"/>
<substitution expression="<title>\4</title>"/>
<fileset dir=".">
<include name="*.htm"/>
</fileset>
</replaceregexp>
</target>
现在我要做的是使用正则表达式查看.htm文件中是否有某个单词,如果匹配则设置条件。例如:
<condition property="isConcept">
<matches pattern="<body.*(?=ConceptStyle).*</body>" 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="<body.*(?=ConceptStyle).*</body>" 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="(<)(/body)(>)"/>
<substitution expression="\1\/conbody>"/>
<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="(<)(/body)(>)"/>
<substitution expression="\1\/taskbody>"/>
<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="(<)(/body)(>)"/>
<substitution expression="\1\/refbody>"/>
<fileset dir=".">
<include name="*.htm"/>
<not>
<contains text="ConceptStyle"/>
</not>
<not>
<contains text="TaskChar"/>
</not>
</fileset>
</replaceregexp>
</target>
每个目标都在一个文件集上运行,该文件集过滤了一个字符串,该字符串不得出现在文件中,以便目标对其起作用。有三种样式类型名称,我的源文件只包含三种样式中的一种(按设计),现在这会触发ANT构建以根据它的类型不同地处理每个文件。大。
答案 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>
。