汉字转网址
swift中汉字转为百分号的网址的转换:
let str = "天"
print(str.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed))
解码:
let str = "%E5%A4%A9"
print(str.removingPercentEncoding)
汉字转网址
swift中汉字转为百分号的网址的转换:
let str = "天"
print(str.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed))
解码:
let str = "%E5%A4%A9"
print(str.removingPercentEncoding)