Re: make a string lowercase

2011-12-14 Thread webplusplus
Just use embedded scripting support. So no addons are required. ... -- View this message in context: http://ant.1045680.n5.nabble.com/make-a-string-lowercase-tp1352626p5074090.html Sent from the Ant - Users mailing list archive at Nabble.com

Re: make a string lowercase

2011-01-11 Thread wolfgang haefelinger
tml > > That URL shows using the lowercase task in the very first example. > > --- > Shawn Castrianni > > > -Original Message- > From: Gilbert Rebhan [mailto:gil...@maksimo.de] > Sent: Monday, January 10, 2011 2:11 PM > To: Ant Users List > Subject: Re:

RE: make a string lowercase

2011-01-10 Thread Shawn Castrianni
2:11 PM To: Ant Users List Subject: Re: make a string lowercase Original Message Subject: Re: make a string lowercase From: halfsetgelly To: user@ant.apache.org Date: 07.01.2011 14:19 > You could use http://ant.apache.org/manual/Tasks/pathconvert.html > and a

Re: make a string lowercase

2011-01-10 Thread Gilbert Rebhan
Original Message Subject: Re: make a string lowercase From: halfsetgelly To: user@ant.apache.org Date: 07.01.2011 14:19 > You could use http://ant.apache.org/manual/Tasks/pathconvert.html > and a > http://ant.apache.org/manual/Types/mapper.html#script-mapper scr

Re: make a string lowercase

2011-01-07 Thread halfsetgelly
://ant.1045680.n5.nabble.com/make-a-string-lowercase-tp1352626p3331823.html Sent from the Ant - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h

RE: make a string lowercase

2008-08-19 Thread Scot P. Floess
.org > Date: Sun, 17 Aug 2008 08:32:54 -0400 > Subject: make a string lowercase > > Is it possible to make a string lowercase (or uppercase)? > Something like > > > ${myVar} can be 'Release', while after calling , ${newVar} will be set to 'releas

RE: make a string lowercase

2008-08-17 Thread Martin Gainty
AIL PROTECTED]> To: user@ant.apache.org> Date: Sun, 17 Aug 2008 08:32:54 -0400> Subject: make a string lowercase> > Is it possible to make a string lowercase (or uppercase)?> Something like > > > ${myVar} can be 'Release', while after calling , ${n

Re: make a string lowercase

2008-08-17 Thread Dale Anson
Antelope has this, see docs here: http://antelope.tigris.org/nonav/docs/manual/bk03ch13.html Dale Guy Catz wrote: Is it possible to make a string lowercase (or uppercase)? Something like ${myVar} can be "Release", while after calling , ${newVar} will be set to "

make a string lowercase

2008-08-17 Thread Guy Catz
Is it possible to make a string lowercase (or uppercase)? Something like ${myVar} can be "Release", while after calling , ${newVar} will be set to "release". Does something like this exist? Thanks.