如何用 '\336\362\340' 表示 NSString值以适当的编码作为普通文本?
我从音频流中得到这样的字符串作为标题:
Þòà - Ïàäàòü
我知道这个字符串是俄语的。我需要在 UILabel 中正确显示它。 我尝试这样做:
NSData *data = [value dataUsingEncoding:NSNonLossyASCIIStringEncoding];
NSString *goodValue = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
现在 goodValue
包含下一个值:
\336\362\340 - \317\340\344\340\362\374
我看到原始保存的字符数。但是我应该如何将其转换为普通字符串以用作 UILabel 中的文本?
提前致谢。
I got strings like this from audio stream as titles:
Þòà - Ïàäàòü
I know that this string in russian. And I need to show it correctly in UILabel.
I try this:
NSData *data = [value dataUsingEncoding:NSNonLossyASCIIStringEncoding];
NSString *goodValue = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
Now goodValue
contains next value:
\336\362\340 - \317\340\344\340\362\374
Number of characters as I see the save with original. But how I should convert it into normal string for using as text in UILabel?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我编写了一些代码来迭代和记录所有可能的组合。
首先,我在 NSString.h 中找到了所有可能编码的列表,并将其设置为可能编码的 C 数组:
现在让我们迭代并显示所有可能的结果:
之后我查看结果并找到了好的字符串。这就是全部 =)
注意:所有编码都是 NSStringEncoding 枚举的值。您可能会认为可以从 0 迭代到编码数量,而不是定义 Encodings[] 数组。但您不应该这样做,因为编码值不是升序整数。例如 NSMacOSRomanStringEncoding = 30 并且其中一些编码是另一种编码的别名。比定义可能的编码数组更好。
I wrote some code for iterating and logging all possible combinations.
At first I found list of all possible encodings in NSString.h and set it to C array of possible encodings:
And now let's iterate and show all possible results:
After that I look through results and found good string. That's all =)
note: all encodings are values of NSStringEncoding enum. And you could think that you could iterate from 0 to number of encodings instead of defining encodings[] array. But you shouldn't do this, because encoding values are not ascending ints. For example NSMacOSRomanStringEncoding = 30 and some of this encoding are aliases for another. Than better to define array of possible encodings.