>I'm trying to figure out a way how to read a text file line by line.
>Then for each read line I'd like to invoke a macro with that 
>line's contents as an argument. I can't find a better whay 
>than using ant-contribs math+var tasks to count the number of 
>lines read so far. With that I can use <headfilter> to just 
>read the next line. Any other possibilities?

not tested

<loadfile property="src" srcFile="..."/>
<ac:for param="line" list="${src}" delimiter="${line.separator}">
  <sequential>
    <mymacro line="@{line}"/>
  </sequential>
</ac:for>


Jan

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to