> I didn't remember you were on Windows, replace the forward slashes
> either with double backslashes or ${file.separator} (hmm, you'd
> probably still have to escape that with a \ for the regexp engine).
Thanks, that works.
Richard
Just for reference, (running on Windows):
<target name="copyI18N">
<copy todir="${output}" >
<fileset dir="${src}">
<include name="**/*.properties"/>
</fileset>
<mapper type="regexp" from="(.*)\\I18N\\(.*)$$" to="\1/\2"/>
</copy>
</target>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>