Say I have a large number (integer or float) like 12345 and I want it to look like 12,345.
How would I accomplish that?
I'm trying to do this for an iPhone app, so something in Objective-C or C would be nice.
|
Say I have a large number (integer or float) like 12345 and I want it to look like 12,345. How would I accomplish that? I'm trying to do this for an iPhone app, so something in Objective-C or C would be nice.
| ||||
|
feedback
|
|
Try using an NSNumberFormatter. This should allow you to handle this correctly on an iPhone. Make sure you use the 10.4+ style, though. From that page: "iPhone OS: The v10.0 compatibility mode is not available on iPhone OS—only the 10.4 mode is available." | |||
|
feedback
|
|
Here is the answer.
| |||
|
feedback
|
|
At least on Mac OS X, you can just use the "'" string formatter with printf(3). $ man 3 printf
as in printf("%'6d",1000000); | |||
|
feedback
|
|
Cleaner C code
| ||||
|
feedback
|
|
I did this for an iPhone game recently. I was using the built-in LCD font, which is a monospaced font. I formatted the numbers, ignoring the commas, then stuck the commas in afterward. (The way calculators do it, where the comma is not considered a character.) Check out the screenshots at RetroJuJu. Sorry--they aren't full-sized screenshots so you'll have to squint! | |||
|
feedback
|
|
Hope that helps you (it's in C) :
There might be a few errors I didn't see (I'm blind when it comes to this...) It's like an enhanced iToA so maybe it's not the best solution. | |||
|
feedback
|
|
Use recursion, Luke:
| |||
|
feedback
|