Reputation: 32490
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
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 <>
in replacement of that.
<Employees Id="1" Name="ABC">
<Query>
SELECT * FROM EMP WHERE ID=1 AND RES <> 'GCF'
<Query>
</Employees>
14.1 How to use special characters in XML has all the codes.
Upvotes: 0
Reputation: 151
I have tried &, but it didn't work. Based on Wim ten Brink's answer I tried &amp and it worked.
One of my fellow developers suggested me to use & and that worked regardless of how many times it may be rendered.
Upvotes: 8
Reputation: 16952
&
should work just fine. Wikipedia has a list of predefined entities in XML.
Upvotes: 61
Reputation: 6824
Use CDATA
tags:
<![CDATA[
This is some text with ampersands & other funny characters. >>
]]>
Upvotes: 86
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 &
.
Upvotes: 173
Reputation: 311436
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.
Upvotes: 220
Reputation: 534
In my case I had to change it to %26
.
I needed to escape &
in a URL. So &
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
Reputation: 2014
&
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 &
) and then use that to create properly encoded HTML (which involves again changing &
to &
). That results in:
&amp;
For a more thorough explanation of XML encoding, see:
What characters do I need to escape in XML documents?
Upvotes: 8
Reputation: 26682
When your XML contains &amp;
, this will result in the text &
.
When you use that in HTML, that will be rendered as &
.
Upvotes: 482
Reputation: 57
<xsl:text disable-output-escaping="yes">& </xsl:text>
will do the trick.
Upvotes: 4