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.
---
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:
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
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
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
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
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-
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