我试图计算文件中“此构建列表是否需要编译:true ”行的出现次数。我尝试了以下代码,但它没有计算
<concat>
<fileset file="@{logPathInTestSetup}" />
<filterchain>
<tokenfilter>
<ct:countfilter property="noOfCompiledBuildlists" contains="Does this buildlist need compile:\s*(true)" override="true">
<ct:counteach propertyprefix="count." select="\1" />
</ct:countfilter>
</tokenfilter>
<ct:stopfilter />
</filterchain>
</concat>
当我尝试计算“此构建列表是否需要编译:”时,计数器工作并且我得到正确的值。因此,正则表达式肯定存在问题。有人可以帮忙吗?谢谢, 阿尔西