如何将 utf8 格式的 nsstring 转换为常规 nsstring?

发布于 2024-11-15 01:21:34 字数 488 浏览 5 评论 0原文

我有一个问题,我从流服务器获得一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你怎么这么可爱啊 2024-11-22 01:21:34
NSString *aString = [NSString stringWithUTF8String:"\u5f20\u9510\u7b49\u540c\u5fd7\u4efb"];
NSLog(@"%@", aString);

这应该有效吗?

NSString *aString = [NSString stringWithUTF8String:"\u5f20\u9510\u7b49\u540c\u5fd7\u4efb"];
NSLog(@"%@", aString);

This should work right?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文