在 Objective C 中,如何在 1 位整数的左侧添加零?

发布于 2024-11-10 12:51:15 字数 146 浏览 0 评论 0原文

如何在 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 技术交流群。

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

发布评论

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

评论(2

你怎么这么可爱啊 2024-11-17 12:51:15

使用字符串格式说明符 %02d ,任何一位整数都将在字符串中用零填充。

Use the string format specifier %02d and any single digit integer will be padded with a zero in a string.

旧人 2024-11-17 12:51:15

您可以使用字符串格式化程序向整数值添加填充,如下所示:帮助填充数字字符串< /a>

You can use string formatters to add padding to your integer value as shown here: Help in padding numerical strings

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