我想在我的变量字符串中插入“
let myText : String = "\(")"
print("the result "+myText)
我想要的结果
结果“
答案 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)
输出:
结果“