Thanks Jan, works basically but am having problems with certain regexs
<replaceregex pattern="(\s+)" replace=" " flags="g" byline="true" /> does nothing <replaceregex pattern="(_TAB_)" replace="see note below" flags="g" byline="true" /> been trying to place a regex inside the @replace but with no luck. I'm trying to replace the _TAB_ string with an actual tab so one of the following should do something: \t, \u0011, \ (might have the u and x backwards). Any help with this will be appreciated. Thanks Mario Maddunic Quoting [EMAIL PROTECTED]: > Maybe something like > > <move> > <filterchain> > <tokenfilter> > <filetokenizer/> > <replaceregex pattern="" replace="" flags="s"/> > <replaceregex pattern="" replace="" flags="s"/> > > > Jan > > > > >-----Ursprüngliche Nachricht----- > >Von: Mario Madunic [mailto:[EMAIL PROTECTED] > >Gesendet: Dienstag, 31. Juli 2007 16:00 > >An: Ant Users List > >Betreff: 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="\&#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] > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
