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
You could use http://ant.apache.org/manual/Tasks/pathconvert.html and a http://ant.apache.org/manual/Types/mapper.html#script-mapper scriptmapper self.addMappedName(source.toLowerCase()); ${converted} -- View this message in context: http://ant

RE: make a string lowercase

2008-08-19 Thread Scot P. Floess
You can probably use some scripting...perhaps beanshell...to do this for you... Additionally, you can look to Ant Contrib's propertyregex task - should be simple enough to do this with a regex :) On Sun, 17 Aug 2008, Martin Gainty wrote: I created a separate target to uppercase the string

RE: make a string lowercase

2008-08-17 Thread Martin Gainty
I created a separate target to uppercase the string call the java class upperstore the results to outputproperty out = ${out} (source file to convert attached) anyone else?Martin __ Disclaimer and confidentiality note Everything in this e-

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 "release". Does somethi