如何在字符串中插入双引号?

时间:2015-10-02 08:44:22

标签: swift text

我想在我的变量字符串中插入“

let myText : String = "\(")"
print("the result "+myText)

我想要的结果

  

结果“

2 个答案:

答案 0 :(得分:3)

在Xcode 6.x和Xcode 7.0中,您必须使用formReset(uploadScope):void{ uploadScope.clear() uploadScope.queue = [] } 转义"字符才能将其插入字符串中:

\

结果:

  

结果“

答案 1 :(得分:0)

Swift 5,Xcode 10.2

使用以下代码
let myText = #"the result ""#
print(myText)

输出:

  

结果“