在 Objective C 中,如何在 1 位整数的左侧添加零?
如何在 1 位整数的左侧添加零? 是否有任何目标 C 函数可以执行此操作? 我需要这个,所以我只能有一个 NSDateFormat @"ddMMyyyy" 谢谢
我想在小于 10 的整数左侧添加一个零,我不想使用 if 语句。 有什么功能或方法可以实现这一点吗?
How can I add a zero to the left of a 1 digit integer ?
Is there any objective C function to perform this?
I am needing this so I can have only one NSDateFormat @"ddMMyyyy" thanks
I want to add a zero to the left of an integer which is less than 10, I don't want to use an if statement.
Is there any function or way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用字符串格式说明符
%02d
,任何一位整数都将在字符串中用零填充。Use the string format specifier
%02d
and any single digit integer will be padded with a zero in a string.您可以使用字符串格式化程序向整数值添加填充,如下所示:帮助填充数字字符串< /a>
You can use string formatters to add padding to your integer value as shown here: Help in padding numerical strings