I want to convert a string into a double and after doing some math on it, convert it back to a string.
How do I do this in objective-c?
Is there a way to round a double to the nearest integer too?
Thanks!
|
4
|
I want to convert a string into a double and after doing some math on it, convert it back to a string. How do I do this in objective-c? Is there a way to round a double to the nearest integer too? Thanks!
|
|||
|
|
|
|
You can convert an NSString into a double with
Rounding to the nearest int can then be done as
I'm honestly not sure if there's a more streamlined way to convert back into a string than
|
||||||||||
|
|
|
olliej's rounding method is wrong for negative numbers
Here's an alternative
You could of course use a rounding function from math.h |
||
|
|
|
|
Paul is correct, i am a moron -- i just always tend to be dealing with positive values. A more "correct" approach would probably actually be |
||
|
|
|
|
Adding to olliej's answer, you can convert from an int back to a string with
|
||
|
|
|
|
To really convert from a string to a number properly, you need to use an instance of Different locales will format numbers differently. For example, in some parts of the world, It really depends on the provenance of the input. The safest thing to do is configure an |
||
|
|
|
Further to Chris Hanson's answer, you can find out more about number formatters, their behaviour, and format strings, from NSNumberFormatter on Mac OS X 10.4 in Data Formatting Programming Guide For Cocoa. |
||
|
|
|
|
Another way to extract numbers from a string is to use an NSScanner: http://developer.apple.com/documentation/Cocoa/Conceptual/Strings/Articles/Scanners.html#//apple_ref/doc/uid/20000147 |
||
|
|
|
|
For rounding, you should probably use the C functions defined in math.h.
Hold down Option and double click on |
||
|
|
|
|
Another source of information that might be useful to you is this article about NSNumberFormatter: http://www.iphonesdkarticles.com/2008/11/localizing-iphone-apps-part-1.html |
||
|
|
|
|
This is the easiest way I know of:
|
||
|
|