Quantcast
Channel: Trying to parse non well-formed XML using NSXMLParser - Stack Overflow
Browsing all 3 articles
Browse latest View live

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 &lt;> -- replace with &gt;& -- replace with &amp;' -- replace with...

View Article



Answer by Simon Lee for Trying to parse non well-formed XML using NSXMLParser

You should encode these characters for instance & becomes &amp; or " becomes &quot;When it goes through the parser it should come out ok. Your other option is to use a different XML parser...

View Article

Trying 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
Browsing all 3 articles
Browse latest View live


Latest Images