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.

How Should I write an elements value inside an XML which contains apostrophe? Is there an escape sequence for the same?

I am dynamically getting an xml, something like this from a sql Select. Now in this case emp_name O''DELL, SEAN in itself contains apostrophe. How should I be getting emp_name so a proper xml could be formed?

<Result type="Benefit" emp_id='332' emp_name='O''DELL, SEAN '/>

Thanks Guys.

share|improve this question

1 Answer

up vote 5 down vote accepted

Use &apos; in place of '. Check this.

share|improve this answer
Both of the answers worked. I came to know that &apos is escape sequence for apostrophe in XML. But how come &#39 is working too. I know that 39 is dec ascii value for apostrophe, but how is that related with XML. Does all the acii value sets work for xml too? Thanks. – Tintin Mar 16 '11 at 21:10
UTF-8 is a superset of ASCII (ASCII being in actuality a 7-bit value, so 0-127), so if your XML is UTF-8 encoded decimal values up to 127 will work as escape sequences also. Beyond that, you're not ACSCII any more and the active code page comes into play for interpreting non-Unicode values. – DaveE Mar 16 '11 at 21:22
DaveE - that's a very misleading comment. The numbers in numeric character references like &#39 are unicode codepoint values, and they have nothing to do with the character encoding used for the file. Apostrophe is &#39 even if the document is in EBCDIC. – Michael Kay Mar 16 '11 at 22:31

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.