How do I escape ampersands (&) in XML? I tried & but this isn't allowed.
Actually, I had a minor issue to provide this example since this site rendered the first amp; so only one was visible. To fix that, I had to use amp; three times after the &. Every amp; adds another render layer. |
|||
|
|
|
As per §2.4 of the XML 1.0 spec, you should be able to use
Are you sure it isn't a different issue? XML explicitly defines this as the way to escape ampersands. |
||||
|
|
|
|
|||
|
|
|
CDATA tags?
|
|||||||||||||
|
|
The '&' character is itself an escape character in XML so the solution is to concatenate it and a Unicode decimal equivalent for '&' thus ensuring that there are no XML parsing errors. That is, replace the character '&' with '&'. |
|||||
|
|
|
||||
|
|
|
use htmlspecialchars() for string |
|||
|
|
|
How about using the unicode |
|||
|
|
|
If you are trying to escape an ampersand within an URL, try the following: |
|||
|
|
protected by George Stocker♦ Oct 14 '11 at 20:08
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

&,",<,>are defined with XML norm. There should not be any XML dialect without them. Why do you say it isn't allowed? Please elaborate the question. – p4bl0 Aug 25 '09 at 14:15