如何在 Objective-C 中转义斜杠和引号?

发布于 2024-09-11 20:40:45 字数 371 浏览 9 评论 0原文

我想对

[controller setMessageBody:[NSString stringWithFormat:@"<strong>%@</strong> <br> <br> %@ <br><br> %@ <br><br> Sent From MyApp",self.articleTitle, self.articleDescription, self.articleURL] 
isHTML:YES];

最后一个 %@ 执行以下操作 我想做 Hello

但我不确定如何正确转义它?

I would like to do the following

[controller setMessageBody:[NSString stringWithFormat:@"<strong>%@</strong> <br> <br> %@ <br><br> %@ <br><br> Sent From MyApp",self.articleTitle, self.articleDescription, self.articleURL] 
isHTML:YES];

on the last %@ I would like to do <a href="%@">Hello</a>

But I am not sure how to escape it properly?

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

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

发布评论

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

评论(1

゛时过境迁 2024-09-18 20:40:45

只需使用

@"....<a href=\"%%@\">Hello</a>..."

如果将其放入格式中,则

@"<a href=\"%@\">Hello</a>"

,或者如果在格式字符串中使用 %@ 包含它,则使用。 %@ 仅在 stringWithFormat: 方法的第一个参数中进行解释。

Just use

@"....<a href=\"%%@\">Hello</a>..."

if you put it in the format, or use

@"<a href=\"%@\">Hello</a>"

if you include it using %@ in the format string. The %@ is only interpreted in the first argument of the stringWithFormat: method here.

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