views:

189

answers:

1

Hi all! 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 example I wish have img_010.jpg as result, and not img_0010.jpg... how can I format the string??

thanks

+7  A: 

Use the format string "img_%03d.jpg" to get decimal numbers with three digits and leading zeros.

Gumbo
thanks very much!
ghiboz
@ghiboz: You’re welcome!
Gumbo