gpt4 book ai didi

iphone - 将十六进制字符串转换为文本的 NSString?

转载 作者:太空狗 更新时间:2023-10-30 03:47:53 25 4
gpt4 key购买 nike

我需要将十六进制值的 NSString 转换为文本 (ASCII) 的 NSString。例如,我需要这样的东西:

"68 65 78 61 64 65 63 69 6d 61 6c" to be "hexadecimal"

我查看并调整了 this thread 中的代码,但这对我不起作用。它仅适用于一对十六进制。跟空格有关系?非常感谢任何提示或示例代码。

最佳答案

好吧,我会根据您的目的修改相同的内容。

NSString * str = @"68 65 78 61 64 65 63 69 6d 61 6c";
NSMutableString * newString = [NSMutableString string];

NSArray * components = [str componentsSeparatedByString:@" "];
for ( NSString * component in components ) {
int value = 0;
sscanf([component cStringUsingEncoding:NSASCIIStringEncoding], "%x", &value);
[newString appendFormat:@"%c", (char)value];
}

NSLog(@"%@", newString);

关于iphone - 将十六进制字符串转换为文本的 NSString?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6515360/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com