我们怎样才能写出“在 nsstring 中?
我必须将字符串初始化为“Rose”,包括引号。如何在我们的字符串中写入“?
I have to initialize string as "Rose" including Quotation Mark. How to write " in our string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
用 \ 转义双引号
Escape the double quote with \
使用转义字符:\
您可以找到有关转义字符和字符串文字。
Use the escape character: \
You can find additional information about Escape character and String literal.
用反斜杠转义它:
Escape it with a backslash:
转义引号。
例子:
Escape the quotation marks.
Example:
在 swift 5 中,您可以使用主题标签编写:
输出:
In swift 5, you can write with a hashtag :
Output :