AJM
AJM

Reputation: 32490

How do I escape ampersands in XML so they are rendered as entities in HTML?

I have some XML text that I wish to render in an HTML page. This text contains an ampersand, which I want to render in its entity representation: &.

How do I escape this ampersand in the source XML? I tried &, but this is decoded as the actual ampersand character (&), which is invalid in HTML.

So I want to escape it in such a way that it will be rendered as & in the web page that uses the XML output.

Upvotes: 614

Views: 878564

Answers (10)

Sarath Subramanian
Sarath Subramanian

Reputation: 21271

Consider if your XML looks like below.

<Employees Id="1" Name="ABC">
  <Query>
    SELECT * FROM EMP WHERE ID=1 AND RES<>'GCF'
  <Query>
</Employees>

You cannot use the <> directly as it throws an error. In that case, you can use &#60;&#62; in replacement of that.

<Employees Id="1" Name="ABC">
  <Query>
    SELECT * FROM EMP WHERE ID=1 AND RES &#60;&#62; 'GCF'
  <Query>
</Employees>

14.1 How to use special characters in XML has all the codes.

Upvotes: 0

mcampos
mcampos

Reputation: 151

I have tried &amp, but it didn't work. Based on Wim ten Brink's answer I tried &amp;amp and it worked.

One of my fellow developers suggested me to use &#x26; and that worked regardless of how many times it may be rendered.

Upvotes: 8

nikc.org
nikc.org

Reputation: 16952

&amp; should work just fine. Wikipedia has a list of predefined entities in XML.

Upvotes: 61

scragar
scragar

Reputation: 6824

Use CDATA tags:

 <![CDATA[
   This is some text with ampersands & other funny characters. >>
 ]]>

Upvotes: 86

trouble
trouble

Reputation: 1749

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;.

Upvotes: 173

John Feminella
John Feminella

Reputation: 311436

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

I tried &amp; but this isn't allowed.

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

Upvotes: 220

Serhat Akay
Serhat Akay

Reputation: 534

In my case I had to change it to %26.

I needed to escape & in a URL. So &amp; did not work out for me. The urlencode function changes & to %26. This way neither XML nor the browser URL mechanism complained about the URL.

Upvotes: 16

Riley Major
Riley Major

Reputation: 2014

&amp; is the way to represent an ampersand in most sections of an XML document.

If you want to have XML displayed within HTML, you need to first create properly encoded XML (which involves changing & to &amp;) and then use that to create properly encoded HTML (which involves again changing & to &amp;). That results in:

&amp;amp;

For a more thorough explanation of XML encoding, see:

What characters do I need to escape in XML documents?

Upvotes: 8

Wim ten Brink
Wim ten Brink

Reputation: 26682

When your XML contains &amp;amp;, this will result in the text &amp;.

When you use that in HTML, that will be rendered as &.

Upvotes: 482

Rick
Rick

Reputation: 57

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

Upvotes: 4

Related Questions