我们怎样才能写出“在 nsstring 中?

发布于 2024-10-30 07:06:52 字数 44 浏览 4 评论 0原文

我必须将字符串初始化为“Rose”,包括引号。如何在我们的字符串中写入“?

I have to initialize string as "Rose" including Quotation Mark. How to write " in our string?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

三人与歌 2024-11-06 07:06:52

用 \ 转义双引号

NSString *yourString = @"\"Rose\""; 

Escape the double quote with \

NSString *yourString = @"\"Rose\""; 
诗笺 2024-11-06 07:06:52

使用转义字符:\

NSString *r = @"\"Rose\"";

您可以找到有关转义字符字符串文字

Use the escape character: \

NSString *r = @"\"Rose\"";

You can find additional information about Escape character and String literal.

陌伤ぢ 2024-11-06 07:06:52

用反斜杠转义它:

@"\"Rose\""

Escape it with a backslash:

@"\"Rose\""
别忘他 2024-11-06 07:06:52

转义引号。

例子:

NSString *str = @"\"Rose\"";

Escape the quotation marks.

Example:

NSString *str = @"\"Rose\"";
北方的韩爷 2024-11-06 07:06:52
NSString *yourString = @"\"Rose\"";
NSString *yourString = @"\"Rose\"";
找个人就嫁了吧 2024-11-06 07:06:52

在 swift 5 中,您可以使用主题标签编写:

 let raw = #"You can create "raw" strings in Swift 5."#

输出:

You can create "raw" strings in Swift 5.

In swift 5, you can write with a hashtag :

 let raw = #"You can create "raw" strings in Swift 5."#

Output :

You can create "raw" strings in Swift 5.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文