Objective-c 中的转义百分比

发布于 2024-11-03 18:06:45 字数 328 浏览 0 评论 0原文

我知道 %% 方法,但它不起作用:(。

使用 NSLog

 NSLog(@"%%5B hello %%5D");

打印

%5B你好%5D

但带有 NSString

NSString *str = [NSString stringWithFormat:@"%%5B %@ %%5D",@"hello"];
NSLog(str);

打印

5你好68233204

为什么?

I know the %% method, but it's not working :(.

with NSLog

 NSLog(@"%%5B hello %%5D");

prints

%5B hello %5D

but with NSString

NSString *str = [NSString stringWithFormat:@"%%5B %@ %%5D",@"hello"];
NSLog(str);

prints

5 hello 68233204

Why?

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

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

发布评论

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

评论(2

愿与i 2024-11-10 18:06:45

这是因为你遗漏了一行代码。在您的 stringWithFormat: 版本中,您可能会遇到类似的问题

NSString *str = [NSString stringWithFormat:@"%%5B5%%5D"];
NSLog(str);

。问题是您现在已经对字符串中的格式字符进行了双重解释。请记住,NSLog()+[NSString stringWithFormat:] 的第一个参数是格式字符串,其中 % 字符被特殊处理。在这两种情况下,您可以通过使用实际的格式字符串轻松保留字符串的原始版本(并提前删除重复的 %),如下所示

NSLog(@"%@", @"%5B%5D");

It's because you left out a line of code. In your stringWithFormat: version you probably have something like

NSString *str = [NSString stringWithFormat:@"%%5B5%%5D"];
NSLog(str);

The problem is you've now doubly-interpreted format characters in the string. Remember, the first arg to NSLog() and to +[NSString stringWithFormat:] is a format string, where % characters are treated specially. In both cases, you can easily preserve the original version of the string (and strip out the duplicate %'s ahead of time) by using actual format strings, as in

NSLog(@"%@", @"%5B%5D");
御守 2024-11-10 18:06:45

您确实需要使用 stringWithFormat: 如果您不打算传递任何参数,您应该能够只使用

NSString *str = @"%%5B%%5D";

但是至于“为什么”,您所遇到的情况正在发生,我不知道当然...尝试传递一个参数,看看它是否仍然发生。也许没有传递参数时存在错误?

根据这篇帖子,您正确地转义了它。

字符串格式说明符文档说你也做得对。

You do need to use stringWithFormat: if you aren't going to pass in any arguments, you should be able to just use

NSString *str = @"%%5B%%5D";

But as to "why", what you are experiencing is occurring, I am not sure... Try passing in an argument and see if it still happens. Maybe there is a bug when no arguments are passed?

According to this post you are escaping it correctly.

String format specifiers document says you are doing it right too.

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