KissXML
KissXML copied to clipboard
\N is getting removed from DDXMLNode
The following code:
[DDXMLNode elementWithName:@"Value" stringValue:@"\\SomePath\New"]
results in the \N getting stripped out:
<Value>\\SomePathew</Value>
if the N in New is lowercase, the result is:
<Value>\\SomePath\new</Value>
which is expected.