AW: How to concat string in ant

2009-06-04 Thread Knuplesch, Juergen
- Von: Gao Lin [mailto:aoi...@gmail.com] Gesendet: Freitag, 5. Juni 2009 08:45 An: user@ant.apache.org Betreff: How to concat string in ant Hi: I want to concat some strings from a list to one string line. like: for example above, if

How to concat string in ant

2009-06-04 Thread Gao Lin
Hi: I want to concat some strings from a list to one string line. like: for example above, if the list of ${strs.list} is: {a, b, c}, how can I get a string with value: string = "a b c" ? do you guys know what is better way to implement