使用“%”在输出中
可能是一个非常简单的问题,我一直在寻找答案但找不到答案,可能是因为我还没有找到要问什么。
我想要以下输出,请参阅输出中的“%”字符:
(33%)
我只是不明白如何格式化“%”字符,以便在输出中看到它。
txt2 = [txt2 stringByAppendingFormat:@"(%i)", percentage];
我知道上面的 stringByAppendingFormat 是错误的。我将非常感谢任何帮助。
Probably a very simple problem and I have been looking for the answer but can not find the it, probably because i have not found out what to ask.
I want the following output, see the '%' character in the output:
(33%)
i just do not understand how to format in the "%" character so it is seen in the output.
txt2 = [txt2 stringByAppendingFormat:@"(%i)", percentage];
I know that the above stringByAppendingFormat is wrong. I would very much appreciate any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用另一个
%
对其进行转义,这样您会得到如下内容:有关与格式化函数一起使用的所有格式说明符的列表,请参阅 此处。
Escape it with another
%
so you get something like this:For a list of all format specifiers to use with the formatting functions, see here.