On Fri, Jul 23, 2010 at 11:00 AM, Bailey, Darragh <dbai...@hp.com> wrote:
> I've also done some additional testing and have found that the following will 
> eliminate the problem for a single space.
>
>      <chainedmapper>
>        <regexpmapper to="\1" from="file:([^\!]*)" />
>        <regexpmapper from="(.*)%20(.*)" to="\1 \2" />
>      </chainedmapper>

Take a look at this:
http://ant.apache.org/manual/Types/mapper.html#filter-mapper

This might work:

<filtermapper>
  <replacestring from="%20" to=" "/>
</filtermapper>

-- 
David Weintraub
qazw...@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@ant.apache.org
For additional commands, e-mail: user-h...@ant.apache.org

Reply via email to