如何将 utf8 格式的 nsstring 转换为常规 nsstring?
我有一个问题,我从流服务器获得一个 NSString(也许我称它 astring) 当我打印这个字符串时,在控制台中显示\u5f20\u9510\u7b49\u540c\u5fd7\u4efb
。
它是一个 NSString(astring),可以通过控制台打印到 \u5f20\u9510\u7b49\u540c\u5fd7\u4efb
, 并且不像 NSString* bstring=@"\u5f20\u9510\u7b49\u540c\u5fd7\u4efb"
现在,我想转换这个astring 到可能包含简单汉字的 nsstring。 我怎样才能做到这一点? 非常感谢! 有关更多详细信息,内存中的字符串为 \\u5f20\\u9510\\u7b49\\u540c\\u5fd7\\u4efb
i have a question that i get a NSString(maybe i called it astring) form a stream server
when i print this astring ,shows\u5f20\u9510\u7b49\u540c\u5fd7\u4efb
in console.
It's a NSString(astring) that can be printed to\u5f20\u9510\u7b49\u540c\u5fd7\u4efb
by console ,
and is not such like a NSString* bstring=@"\u5f20\u9510\u7b49\u540c\u5fd7\u4efb"
now, i want to convert this astring
to a nsstring which may contains simple chinese character.
how could i do this?
Thanks very much!
for more detail, the astring is\\u5f20\\u9510\\u7b49\\u540c\\u5fd7\\u4efb
in memory
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效吗?
This should work right?