↧
Answer by peterjb for Trying to parse non well-formed XML using NSXMLParser
To answer half your question, XML has 5 special characters that you may want to escape:< -- replace with <> -- replace with >& -- replace with &' -- replace with...
View ArticleAnswer by Simon Lee for Trying to parse non well-formed XML using NSXMLParser
You should encode these characters for instance & becomes & or " becomes "When it goes through the parser it should come out ok. Your other option is to use a different XML parser...
View ArticleTrying to parse non well-formed XML using NSXMLParser
I am parsing XML Data using NSXMLParser and I notice now, that the Elements can contain ALL characters, including for example a &. Since the parser is giving an error when it comes across this...
View Article