我想得到这些特定字母的百分比编码字符串,如何在目标-c 中做到这一点?
Reserved characters after percent-encoding
! * ' ( ) ; : @ & = + $ , / ? # [ ]
%21 %2A %27 %28 %29 %3B %3A %40 %26 %3D %2B %24 %2C %2F %3F %23 %5B %5D
请使用这个字符串进行测试,看看它是否有效:
myURL = @"someurl/somecontent"
我希望字符串看起来像:
myEncodedURL = @"someurl%2Fsomecontent"
我已经尝试使用 stringByAddingPercentEscapesUsingEncoding: NSASCIIStringEncoding
,但它不工作,结果仍然是原来的字符串相同。请指教。