Feb
11
How to Escape {“‘<>&} Characters in ANT
Written by Davy Hua
How exactly do you escape special characters from ANT? Say if you need to add extra ” quotation characters within a property which already has a set of quotes?
Here’s how to do it — use XML Character entity references:
For > use >
For < use <
For “ use "
For & use &
For ‘ use '
Any other characters you need? Drop me a line..
One Response to “How to Escape {“‘<>&} Characters in ANT”
Leave a Reply
Related Topics:
+ Importing a new Project in Perforce

Thanx for great article.