当前位置:  开发笔记 > 编程语言 > 正文

如何在url字符串中编码''+'字符?

如何解决《如何在url字符串中编码''+'字符?》经验,为你挑选了1个好方法。

我想+在我的url字符串中编码字符,我试着这样做:

let urlString = "www.google.com?type=c++"

let result = string.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)

但这不适用+.

任何的想法?谢谢.

更新:

type=url中的这个参数是动态的,我不会对+ 字符做一些隐含的替换.此type=参数表示UITextField值,因此可以键入任何内容.

我也很好奇为什么addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)不能在这种特殊情况下工作?



1> Viktor Garda..:
let allowedCharacterSet = CharacterSet(charactersIn: "!*'();:@&=+$,/?%#[] ").inverted

if let escapedString = "www.google.com?type=c++".addingPercentEncoding(withAllowedCharacters: allowedCharacterSet) {
  print(escapedString)
}

输出:

www.google.com%3Ftype%的3Dc%2B%2B

推荐阅读
U友50081205_653
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有