gpt4 book ai didi

ios - 如何在 swift 字符串中一起写斜杠和引号(例如\")?

转载 作者:搜寻专家 更新时间:2023-11-01 06:20:53 24 4
gpt4 key购买 nike

我有一个包含 \"(斜线和引号在一起)的 html 字符串。我想用 " 替换 \"(引号) 使用此方法:

let slashAndQuote = "How to write here slash and quote together (something like this '\"')"
let slash = "\""
let str = myString.stringByReplacingOccurrencesOfString(slashAndQuote, withString: slash)

我无法在字符串中同时使用斜杠和引号。请让我知道更好的解决方案。

最佳答案

您只需要使用\ 转义字符串中您想要的每个特殊字符。在您的示例中,它看起来像这样:

let slashAndQuote = "How to write a slash and quote together, (something like this '\\\"')"
print(slashAndQuote)

这给出了输出:

How to write a slash and quote together, (something like this '\"')

您也可以只对斜杠和引号执行相同的操作:

let slash = "\\\""

关于ios - 如何在 swift 字符串中一起写斜杠和引号(例如\")?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34519039/

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