用一位整数构成两位字符串


Answers:



25

使用格式字符串%02d。这指定格式化一个最小字段宽度为2个字符的整数,并用0填充格式化的值以满足该宽度。有关man fprintf格式说明符的所有详细信息,请参见。

不过,如果您要格式化数字以呈现给用户,则应该使用NSNumberFormatter。对于如何格式化数字,不同的语言环境有不同的期望。


-2
[NSString stringWithFormat:@"%00.02d", intValue]

这有助于我将1转换为01。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.