如何在目标c中的字符串中包含“”

时间:2012-09-29 18:40:09

标签: objective-c string comma

  

可能重复:
  How to escape double quotes in string?

如何在字符串中包含“”并停止结束字符串?我有一串html但不能定义元素,因为我不能使用“”有什么帮助吗?

2 个答案:

答案 0 :(得分:5)

使用反斜杠转义引号,如下所示:

@"A string with \"quotes\" around the word \"quotes\"."

如果使用NSLog()打印,则输出为:

A string with "quotes" around the word "quotes".

Objective-C继承了从C转义的字符串文字,在其他地方继承了一些C字符串转义码are listed here

答案 1 :(得分:1)

所以你想在字符串里面加一个引号? 我想你想要这样的东西:

"string with quote: \" << the quote"