Answer Posted / praveen
CDATA stands for character data.
To include an XML document in an XML document, CDATA
sections are used. And also to escape the angle brackets and
ampersands.
CDATA sections are delimited by ?<![CDATA[? and ?]]>?.
The XML parser ignores delimiters within the CDATA section,
except for ]]>
The following example uses a CDATA section to insert an XML
example
into an XML document.
<?xml version=?1.0??>
<example>
<![CDATA[
<?xml version=?1.0??>
<entry>
<name>yourname</name>
<email href=?mailto:name@yoursite.com?/>
</entry>]]>
</example>
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
Define the concept of XPOINTER.
Explain about xml namespaces?
Why xml parsing is important?
Explain what is xsl-fo?
What is xml data in excel?
What is orm xml?
What is the relation between atom and xml?
How do I convert html to xml?
Why namespace is used in xml?
Do I need to use xml namespaces?
What is the function of xslt?
How do I convert xml to word?
Write a program to show literal result element as stylesheet?
What are the differences between xml and html?
Define element and attribute in an xml document.