> Hello
> I'm using ANT and I'd like to replace some texte in a webpage
[quoted text clipped - 14 lines]
>
> thanks
Although, this isn't really a Java question, I think I can help...
You have " symbols inside your value attribute... That doesn't work.
Try this instead:
<replace file="a/file.html"
token="<li><a href="e;../a/index.html"e;>"
value="<li id="e;current"e><a
href="e;../a/index.html"e;>"
/>
Although, I would think it would be better to edit the file directly,
rather than at build time.