Objective-C 中的 URL 字符串转义表示? (“百分比编码”)
我想在 IOS5 下的 Objective-C 中完成一个非常简单的任务:将 URL 字符串转换为其转义表示形式。
我尝试了很多方法来做到这一点,但似乎都不起作用。
我无法使 stringByAddingPercentEscapesUsingEncoding: NSASCIIStringEncoding 工作。它会转换诸如 áíűőüöúóé 之类的字母,但不会转换诸如 = 之类的其他字母。
我想要一个像 Uri.EscapeDataString 这样的函数( http: //msdn.microsoft.com/en-us/library/system.uri.escapedatastring.aspx )在 .net 中。
谢谢!
I want to make a very simple task in objective-c under IOS5: convert URL string to its escaped representation.
I tried a lot of ways to do it but neither seemed to work.
I can not make stringByAddingPercentEscapesUsingEncoding: NSASCIIStringEncoding work. It converts letters like áíűőüöúóé but does not convert others like =.
I'd like to have a function like Uri.EscapeDataString ( http://msdn.microsoft.com/en-us/library/system.uri.escapedatastring.aspx ) in .net.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以向
NSString
添加一个类别,该类别执行类似Replace
@":/?#[]@!$&'()*+,;="
的操作您关心的字符。You could add a category to
NSString
that does something likeReplace
@":/?#[]@!$&’()*+,;="
for the chars that you care about.