Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I escape ampersands (&) in XML? I tried & but this isn't allowed.

share|improve this question
@DmitryK, thats for escaping an apostrophe. & should work though. – Brandon Aug 25 '09 at 14:14
1  
What XML parser are you using? & should work. – jeffamaphone Aug 25 '09 at 14:14
12  
&, ", <, > 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
1  
See also stackoverflow.com/questions/1091945/… – trouble Feb 9 '11 at 21:16
4  
Geoff Reedy, your edit radically changes the meaning of the post... I think the OP really wanted to type two & if you suspect a mistake a comment would have been appropriate – Samuel Rossille Nov 15 '12 at 16:09
show 1 more comment

10 Answers

up vote 62 down vote accepted

& will result in & when rendered. Which will result in & if rendered again...

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.

share|improve this answer
Why the accepted answer answer something else as question? – Łukasz Lech May 7 at 9:00

As per §2.4 of the XML 1.0 spec, you should be able to use &.

I tried & but this isn't allowed.

Are you sure it isn't a different issue? XML explicitly defines this as the way to escape ampersands.

share|improve this answer

& should work just fine, Wikipedia has a List of predefined entities in XML.

share|improve this answer

CDATA tags?

     <![CDATA[
       This is some text with ampersands & other funny characters. >>
     ]]>
share|improve this answer
This is a guess rather than an answer. – Bryan Oakley Aug 25 '09 at 14:24
3  
It might be a guess; it is correct though. CDATA markers allow raw ampersands to be used. – Quentin Aug 25 '09 at 14:40
8  
The origional post never made clear where the & was to be used, CDATA tags cannot be used for attribute values, only for the actual content of the tags, hence the reason I included the '?'. – scragar Aug 25 '09 at 19:34
i use cdata and &amp; together. – Kevin Cogill Mar 28 '12 at 18:43

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 '&#038;'.

share|improve this answer
3  
Apart form the missing semi-colon (is that why someone marked it down?), this code is correct and was exactly what I needed from the question. For example, this is useful when storing a query string value in XML. page.aspx?thing=true&#038;otherThing=true – misteraidan Aug 17 '11 at 7:31

&amp; is the only thing i know of

share|improve this answer

<xsl:text disable-output-escaping="yes">&amp;&nbsp;</xsl:text> will do the trick.

share|improve this answer

use htmlspecialchars() for string

share|improve this answer

How about using the unicode \u0026? Works for me in my android XML files. If problems arise, someone let me know.

share|improve this answer

If you are trying to escape an ampersand within an URL, try the following: %26amp%3B

share|improve this answer

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.