本文介绍了stringByAddingPercentEscapesUsingEncoding不能与NSStrings一起使用'0'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在使用 stringByAddingPercentEscapesUsingEncoding:
方法遇到了一些问题。
以下是发生的情况:
I have been having some problem with the stringByAddingPercentEscapesUsingEncoding:
method.Here's what happens:
当我尝试使用该方法转换NSString时:
When I try to use the method to convert the NSString:
"..City=Cl&PostalCode=Rh6 0Nt"
我明白这个..
"City=Cl&PostalCode=Rh62t"
它应该是:
"..City=Cl&PostalCode=Rh6%200Nt"
我该怎么办?在此先感谢!!
What can I do about this? Thanks in advance !!
推荐答案
对我来说,这个:
NSString *s=[@"..City=Cl&PostalCode=Rh6 0Nt" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSLog(@"s=%@",s);
...输出:
s=..City=Cl&PostalCode=Rh6%200Nt
您最有可能使用错误的编码。
You're most likely using the wrong encoding.
这篇关于stringByAddingPercentEscapesUsingEncoding不能与NSStrings一起使用'0'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!