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

I often find this strange CDATA tag in XML files:

<![CDATA[]]>

I have observed that this CDATA tag always comes at the beginning, and then followed by some stuff.

But sometimes it is used, sometimes it is not. I assume it is to mark that some "data" will be inserted after that. But what kind of "data"? Isn't anything I write in XML tags some sort of "data"?

share|improve this question
9  
Interestingly, Google turned up this: w3.org/TR/REC-xml/#sec-cdata-sect. What was wrong with the official explanation? – S.Lott May 6 '10 at 20:25
14  
@S.Lott See the problem with official sources often is that their explanations lacks any real substance. Given the W3 explanation for example, a reader would get the impression that CDATA means that they would not be able to parse things inside this tag at all. Which is inaccurate. A lot of times it is a good idea to ask questions against a community to verify information. Don't discourage this important part of Stackoverflow. This is not just a community of Database administrators that need help recompiling CURL on a esoteric linux OS. All are welcome here. – user1464296 Oct 10 '12 at 17:11

6 Answers

up vote 50 down vote accepted

CDATA stands for Character Data and it means that the data in between these tags includes data that could be interpreted as XML markup, but should not be.

See: http://www.w3.org/TR/REC-xml/#sec-cdata-sect

share|improve this answer
5  
this is a correct and authoritative answer, but I think Richard JP Le Guen's answer is better. – rbp Aug 9 '12 at 23:13

A CDATA section is "a section of element content that is marked for the parser to interpret as only character data, not markup."

Syntactically, it behaves similarly to a comment:

<exampleOfAComment>
<!--
    Since this is a comment
    I can use all sorts of reserves characters
    like > < " and &
    or write things like
    <foo></bar>
    but my document is still well-formed!
-->
</exampleOfAComment>

... but it is still part of the document:

<exampleOfACDATA>
<![CDATA[
    Since this is a CDATA section
    I can use all sorts of reserves characters
    like > < " and &
    or write things like
    <foo></bar>
    but my document is still well formed!
]]>
</exampleOfACDATA>

Try saving the following as a .xhtml file (not .html) and open it using FireFox (not Internet Explorer) to see the difference between the comment and the CDATA section; the comment won't appear when you look at the document in a browser, while the CDATA section will:

<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" >
<head>
<title>CDATA Example</title>
</head>
<body>

<h2>Using a Comment</h2>
<div id="commentExample">
<!--
You won't see this in the document
and can use reserved characters like
< > & "
-->
</div>

<h2>Using a CDATA Section</h2>
<div id="cdataExample">
<![CDATA[
You will see this in the document
and can use reserved characters like
< > & "
]]>
</div>

</body>
</html>
share|improve this answer

The data contained therein will not be parsed as XML, and as such does not need to be valid XML or can contain elements that may appear to be XML but are not.

share|improve this answer

CDATA stands for Character Data. You can use this to escape some characters which otherwise will be treated as regular xml. The data inside this will not be parsed. For eg, if u want to pass an url that contains & in it, you can use CDATA to do it. otherwise you will get error as it will be parsed as regular xml.

share|improve this answer

It's used to contain data which could me otherwise be seen as xml because it contains certain characters.

This way the data inside will not be interpreted.

share|improve this answer

Usually used for embedding custom data, like pictures or sound data within an XML document.

share|improve this answer
2  
Although you could put text-encoded binary data in a CDATA section, you don't have to, because CDATA has nothing directly to do with binary anything. – Joel Mueller May 6 '10 at 22:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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