The XML spec does not require '>' to be escaped as '&gt;' (except in the case of ']]>' when that doesn't mark the end of a cdata section). Only '&' and '<' must be escaped - see section 2.4 of XML 1.0 spec.

Sent from my iPhone

On Feb 9, 2010, at 2:19 PM, Keith Blount <keithblo...@yahoo.com> wrote:

Hello,

I'm using the NSXML classes to write out various strings, and it seems that these classes convert "<" to "&lt;" but not ">" to "&gt;", which I find odd. For instance, consider the following code snippet:

NSXMLElement*element = [[[NSXMLElementalloc] initWithName:@"Test"stringValue:@"< & >"] autorelease];
NSLog (@"%@", element);

The output is:

<Test>&lt; &amp; ></Test>

Is this correct, or is this a bug? Or am I missing something? Do I therefore need to replace all occurrences of ">" with "&gt;" myself to generate better XML?

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to