gpt4 book ai didi

swift - 如何将带有“字符的字符串转换为URL

转载 作者:行者123 更新时间:2023-11-28 16:00:02 25 4
gpt4 key购买 nike

如何把"fff\"fff"这样的String转成URL?URL 必须包含 "字符并且类似于 "ff"ff"

最佳答案

您将 " 字符转义为 %22。最简单的方法是通过 URLComponents:

var components = URLComponents(string: "https://somewhere.com")!
components.query = "ff\"ff"

let url = components.url! // https://somewhere.com?ff%22ff

关于swift - 如何将带有“字符的字符串转换为URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41205917/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com