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.
|
feedback
|
|
You can do it like this:
This ends up breaking the CDATA section in two parts, but it's what you have to do. | |||||||||||||
feedback
|
|
I think
is the way to go. See more at http://en.wikipedia.org/wiki/CDATA#Uses_of_CDATA_sections | |||||
feedback
|
| |||
|
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 " This way the String " | ||||
|
feedback
|