up vote 6 down vote favorite
1
share [g+] share [fb]

Pretty simple question, I'm writing an XML document and i'm not sure how to write "]]>" without it being seen as the end of the section.

link|improve this question

59% accept rate
feedback

4 Answers

up vote 12 down vote accepted

You can do it like this:

]]>]]&gt;<![CDATA[

This ends up breaking the CDATA section in two parts, but it's what you have to do.

link|improve this answer
Better answer IMHO than in the duplicate :) – Rory Becker Feb 11 '09 at 19:03
1  
One word: Yikes. – Paolo Bergantino Feb 11 '09 at 20:40
1  
Paolo: think of it that way: CDATA is an area where you don't have to (and in fact can't) escape anything. How would you mark the end of such an area? – Joachim Sauer Feb 12 '09 at 15:01
The length (in bytes) could be a required attribute. I absolutely agree with Paolo: Yikes. – Nikolai Ruhe Sep 8 '09 at 14:23
feedback

I think

<![CDATA[]]]]><![CDATA[>]]>

is the way to go.

See more at http://en.wikipedia.org/wiki/CDATA#Uses_of_CDATA_sections

link|improve this answer
2  
I don't know if this is the right answer or not, but if so, it's the worst right answer ever. (No offence intended...I'm commenting on the miserableness of the system, rather than your answer.) – Beska Feb 11 '09 at 18:43
feedback

The right angle bracket (>) […] must, for compatibility, be escaped using either " &gt; " or a character reference when it appears in the string " ]]> " in content, when that string is not marking the end of a CDATA section.
http://www.w3.org/TR/REC-xml/#dt-chardata

link|improve this answer
feedback

You can't. CDATA doesn't provide any way to escape characters, so those characters will always represent the end of the CDATA section. You can, however, let them end the CDATA section, add "]]&gt;" and start a new one with "<![CDATA[".

This way the String "]]>]]&gt;<![CDATA[" has almost the effect of being an escape for "`]]>" in a CDATA section.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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