如果条件,Ant正则表达式比较

时间:2011-12-27 03:17:17

标签: regex ant string-comparison

我有str1="A sample string"。如果str1包含sample,我需要echo matchnot matching之类的内容。我不熟悉脚本。请帮帮我。

1 个答案:

答案 0 :(得分:14)

如果您使用较新的蚂蚁,请尝试...... http://ant.apache.org/manual/Tasks/conditions.html

<condition property="legal-password">
  <matches pattern="[1-9]" string="${user-input}"/>
</condition>
<fail message="Your password should at least contain one number"
      unless="legal-password"/>