Hi gurus, Can you please help me resolve this seemingly simple requirement.
I have a my.txt file like localVariable1,propVariable11,propVariable12 localVariable2,propVariable21,propVariable22 localVariable3,propVariable31,propVariable32 I need to parse this line by line and then process each line. While processing each line, I need to execute separate logic on the 2nd and 3rd variables of each line. I've been able to parse each line using the following code. However, I haven't succeeded in getting handle to 2nd and 3rd variables by reference [For e.g. in Java, I'd have iterated using stringtokenizer and referred as stringtkr.token[1], or token[2] -something on those lines] <macrodef name="printline"> <attribute name="lineparam"/> <sequential> <echo>Line param :: @{lineparam}</echo> <for list="@{lineparam}" param="testparam" delimiter=','> <sequential> <property name="@{testparam}" value="This is dummy value for @{testparam}"/> <!-- How do I refer specifically to 1st token and then 2nd and then 3rd? --> </sequential> </for> </sequential> </macrodef> -- View this message in context: http://old.nabble.com/Parsing-comma-separated-string-and-getting-handle-to-each-token-tp26474937p26474937.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...@ant.apache.org