Format string, integer with leading zeros

后端 未结 2 2007

I Use this code:

NSString* strName = [NSString stringWithFormat:@\"img_00%d.jpg\", pp];

and works fine, but if pp took the value of 10 for

2条回答
  •  庸人自扰
    2020-11-29 00:43

    For posterity: this works with decimal numbers.

    NSString *nmbrStr = @"0033620340000" ;
    NSDecimalNumber *theNum = [[NSDecimalNumber decimalNumberWithString:nmbrStr]decimalNumberByAdding: [NSDecimalNumber one]] ;     
    NSString *fmtStr = [NSString stringWithFormat:@"%012.0F",[theNum doubleValue]] ;
    

    Though this information is hard to find, it is actually documented here in the second paragraph under Formatting Basics. Look for the % character.

    https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Strings/Articles/FormatStrings.html

提交回复
热议问题