我有str1="A sample string"
。如果str1
包含sample
,我需要echo
match
和not matching
之类的内容。我不熟悉ant脚本。请帮帮我。
答案 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"/>