1

可能重复:
如何转义字符串中的双引号?

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

4

2 回答 2

5

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

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

如果你用 打印NSLog()它,它将输出为:

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

Objective-C 继承了它从 C 中转义的字符串文字,这里列出了更多的 C 字符串转义码。

于 2012-09-29T18:42:09.720 回答
1

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

"string with quote: \" << the quote"
于 2012-09-29T18:43:55.407 回答