On Wed, 31 Jul 2002, Matt Benson <[EMAIL PROTECTED]> wrote: > Looks interesting but I can't find it in the > documentation.
You'll need Ant 1.5 - somewhere at the end of the list of <http://jakarta.apache.org/ant/manual/CoreTasks/conditions.html> between filesmatch and istrue. > Would it be specified: > > <condition> > <contains string="Ant" substring="a" > casesensitive="false" /> > </condition> Yes - but you'll have to add a property attribute to <condition> as well. After <condition property="Ant contains some kind of a"> <contains string="Ant" substring="a" casesensitive="false" /> </condition> <condition property="Ant contains lower case a"> <contains string="Ant" substring="a" casesensitive="true" /> </condition> The property "Ant contains some kind of a" will be set to "true" and the property "Ant contains lower case a" will be unset. Stefan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
