Re: capture java output to variable

2005-06-01 Thread Antoine Levy-Lambert
Matt Benson wrote: --- Mark Lybarger <[EMAIL PROTECTED]> wrote: the output property contains more than i'd like. how can i "substring" the output? In addition to ant-contrib's propertyregex mentioned elsewhere, when using , , or you can use a nested I/O with filtering. -Matt

RE: capture java output to variable

2005-06-01 Thread Matt Benson
-- > From: Matt Benson [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 01, 2005 11:16 AM > To: Ant Users List > Subject: Re: capture java output to variable > > > --- Matt Benson <[EMAIL PROTECTED]> wrote: > > --- Mark Lybarger <[EMAIL PROTECTED]> wrote:

Re: capture java output to variable

2005-06-01 Thread Matt Benson
--- Matt Benson <[EMAIL PROTECTED]> wrote: > --- Mark Lybarger <[EMAIL PROTECTED]> wrote: > > the output property contains more than i'd like. > how > > can i "substring" the > > output? > > In addition to ant-contrib's propertyregex mentioned > elsewhere, when using , , or you > can use a nest

Re: capture java output to variable

2005-06-01 Thread Matt Benson
--- Mark Lybarger <[EMAIL PROTECTED]> wrote: > the output property contains more than i'd like. how > can i "substring" the > output? In addition to ant-contrib's propertyregex mentioned elsewhere, when using , , or you can use a nested I/O with filtering. -Matt > > On 5/26/05, Dominique Dev

Re: capture java output to variable

2005-06-01 Thread Yayo
Hi, I've found this thread after a google search http://www.jguru.com/forums/view.jsp?EID=1230794 Hope it helps! 2005/6/1, Mark Lybarger <[EMAIL PROTECTED]>: > the output property contains more than i'd like. how can i "substring" the > output? > > On 5/26/05, Dominique Devienne <[EMAIL PROTECT

Re: capture java output to variable

2005-06-01 Thread Mark Lybarger
the output property contains more than i'd like. how can i "substring" the output? On 5/26/05, Dominique Devienne <[EMAIL PROTECTED]> wrote: > > How about ? --DD >

Re: capture java output to variable

2005-05-26 Thread Dominique Devienne
How about ? --DD - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

capture java output to variable

2005-05-26 Thread Mark Lybarger
i have a java class that i can execute from an ant script. the class takes one string argument and writes to system.out an encrypted version of that argument. i'd like to capture in ant the output that is written to system.out to an ant property. how can i do this? thanks!