-
Notifications
You must be signed in to change notification settings - Fork 333
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DDXMLNode:XMLString can't handle unicode #36
Comments
+1,how to solve? |
+1, any idea? |
Same here:
Produces:
|
colemancda
added a commit
to colemancda/KissXML
that referenced
this issue
Dec 29, 2016
Merged
chrisballinger
added a commit
that referenced
this issue
Dec 30, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi I find that DDXMLNode:XMLString can't handle unicode case, it will return string with unicode point &#x...
Just check this simple case,
DDXMLNode *node = [DDXMLNode attributeWithName:@"name" stringValue:@"我"];
NSLog(@"%@",[node XMLString]);
The output is "name="& # x6211;" // I have to add some space in between here otherwise my browser will convert to the corresponding unicode character
I have check the code but but have no idea how to fix it.
The text was updated successfully, but these errors were encountered: