iphone sdk 中的 HTML 解析
我正在使用 git 中的 hpple 来解析 HTML。它工作正常。但是当我得到解析后的 NSString 时,我发现在这个字符串中,双引号 (") 和单引号 (') 被其他符号替换,例如 , 。我怎样才能得到正确的字符串?我试图替换这些字符,但是它不工作。
I am using hpple from git for parsing HTML. It working fine. But when I get the parsed NSString I found that in this string double inverted comma (")and single (') are replaced by some other symbol like ,Äô. How can I get the correct string? I have tried to replace these characters but its not working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看此链接它解决了我的问题
这里添加代码的步骤
以及需要由解析器解析的数据的位置称为此行代码
Check out this link it solved my problem
Here the steps to add the code
and where you need the data parsed by the parser called this line code
检查你的编码;最重要的是,您可能会获得 UTF-8 格式的 HTML 和 ISO-8859-1 格式的字符串。
Check your encoding; bottom-line is you're probably getting the HTML in UTF-8 and the string in ISO-8859-1.