Right now I'm doing the following with each regex that I require to replace some
string or char


<replaceregexp match="(\ue06d)" replace="\&amp;#x00b5;" flags="g" byline="true"
encoding="utf-8">
<fileset dir="${l_Drive}\${randDirName}\drop" includes="*.xml" />
</replaceregexp>

<replaceregexp match="(\u2009)" replace=" " flags="g" byline="true"
encoding="utf-8">
<fileset dir="${l_Drive}\${randDirName}\drop" includes="*.xml" />
</replaceregexp>

etc...(x100)

This is a slow process as each file is "opened" and "closed" for each regex.
What I'd like to do is open a file and parse with multiple regexs before going
to the next regex. Is this possible? I have over a hundred regexs.

Thanks

Marijan Madunic

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to