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.
在我的 Objective C 程序中,我将 Json 解析为字符串。但是在我得到的结果字符串中
我 & # 39 ; ve
中间的
我有
您能否建议如何将其重新格式化以显示 ' 而不是 ' ;
你可以试试开源的 Google Tolbox for MacNSString+HTML 类别。它包含许多以这种方式处理 HTML 实体的方法。(实施文件位于此处)。
NSString+HTML
这取决于这是唯一的情况还是您需要更通用的解决方案。对于这种情况,您可以使用:
[inputString stringByReplacingOccurrencesOfString:@" & # 39 ; " withString:@"'"];