Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know what this sequence would be used for in a string? Someone told me they thought it might be a carriage return but I can't find anything showing this.

I do see somewhere in code where the string is getting casted as XML...is that what it's for? if so what does it do?

Example:

aString += "!%z^+Info: " + dt.Rows(index).Item("Info").ToString

Here's the XML usage:

Dim cdata As XmlCDataSection = doc.CreateCDataSection(aString)
share|improve this question

closed as too localized by Ahmad Mageed, climbage, Oded, Fraser, Stony Jan 5 at 5:25

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 2 down vote accepted

It's just plain text that only means something to the application consuming the generated XML.

share|improve this answer
turns out it was a delimiter for a custom in-house software to indicate something like a carriage return when processing the CDATA section for text output. – phillk6751 Jan 30 at 0:07

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