如何转义原始URL字符串中的所有双引号?

时间:2016-11-03 15:33:47

标签: ios swift

我正在设计一个应用程序,该应用程序将在表格视图中包含YouTube视频列表。所以我需要使用“嵌入式”#39; youtube视频的网址,如下所示:

<iframe width="560" height="315" src="https://www.youtube.com/embed/La4HRfL5tV4" frameborder="0" allowfullscreen></iframe>

我正在尝试编写一个函数来逃避URL中的所有双引号,以便我可以通过&#39; clear&#39; URL作为视频类的字符串&#39;属性:

func backSlashRawLink(_ url: String) -> String {
    return url.replacingOccurrences(of: "\"", with: "\\\"")
}

问题是,如何将包含doubleqoutes的String作为参数传递给此函数?

0 个答案:

没有答案