Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从 SOAP 请求中获取响应。响应是一个 xml 数据。当我尝试将数据转换为字符串时,它显示 <、> 符号为“>”和“<”与“;” 最后。然后xml解析器无法解析它
查看HTML 的这个 NSString 类别。
它向 NSString 添加了几个您可能会发现有用的函数,例如:
- (NSString *)stringByDecodingHTMLEntities;
在将字符串提供给 XML 解析器之前,您可以在字符串上运行此函数并解码 HTML 实体。