gpt4 book ai didi

iphone - Objective-c iPhone 百分比编码一个字符串?

转载 作者:IT老高 更新时间:2023-10-28 11:25:34 25 4
gpt4 key购买 nike

我想得到这些特定字母的百分比编码字符串,如何在objective-c中做到这一点?

Reserved characters after percent-encoding
! * ' ( ) ; : @ & = + $ , / ? # [ ]
%21 %2A %27 %28 %29 %3B %3A %40 %26 %3D %2B %24 %2C %2F %3F %23 %5B %5D

Percent-encoding wiki

请用这个字符串进行测试,看看它是否有效:

myURL = @"someurl/somecontent"

我希望字符串看起来像:

myEncodedURL = @"someurl%2Fsomecontent"

我已经尝试使用 stringByAddingPercentEscapesUsingEncoding: NSASCIIStringEncoding 但它不起作用,结果仍然与原始字符串相同。请指教。

最佳答案

我发现 stringByAddingPercentEscapesUsingEncoding:CFURLCreateStringByAddingPercentEscapes() 都不够用。 NSString 方法遗漏了很多字符,而 CF 函数只让您说出要转义的(特定)字符。正确的规范是转义除一小部分之外的所有字符。

为了解决这个问题,我创建了一个 NSString 类别方法来正确编码字符串。它将对除 [a-zA-Z0-9.-_~] 之外的所有内容进行百分比编码,还将空格编码为 + (根据 this specification )。它还将正确处理编码 unicode 字符。

- (NSString *) URLEncodedString_ch {
NSMutableString * output = [NSMutableString string];
const unsigned char * source = (const unsigned char *)[self UTF8String];
int sourceLen = strlen((const char *)source);
for (int i = 0; i < sourceLen; ++i) {
const unsigned char thisChar = source[i];
if (thisChar == ' '){
[output appendString:@"+"];
} else if (thisChar == '.' || thisChar == '-' || thisChar == '_' || thisChar == '~' ||
(thisChar >= 'a' && thisChar <= 'z') ||
(thisChar >= 'A' && thisChar <= 'Z') ||
(thisChar >= '0' && thisChar <= '9')) {
[output appendFormat:@"%c", thisChar];
} else {
[output appendFormat:@"%%%02X", thisChar];
}
}
return output;
}

关于iphone - Objective-c iPhone 百分比编码一个字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3423545/

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