You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Mario Madunic <ha...@imag.net> on 2007/07/31 15:59:56 UTC

multiple regexs against a single doc

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: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org