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?
|
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? |
||||
|
|
|
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
|
|||||||||||||||||
|
|
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 |
|||||
|
|
Adding to olliej's answer, you can convert from an int back to a string with
|
|||
|
|
olliej's rounding method is wrong for negative numbers
Here's an alternative
You could of course use a rounding function from math.h |
|||
|
|
|
Here's a working sample of NSNumberFormatter reading localized number String (xCode 3.2.4, osX 10.6), to save others the hours I've just spent messing around. Beware: while it can handle trailing blanks such as "8,765.4 ", this cannot handle leading white space and this cannot handle stray text characters. (Bad input strings: " 8" and "8q" and "8 q".)
|
|||||
|
|
For rounding, you should probably use the C functions defined in math.h.
Hold down Option and double click on |
|||
|
|
|
||||
|
|
|
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 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 |
|||
|
|
|
from this example here, you can see the the conversions both ways:
|
||||
|
|
|
This is the easiest way I know of:
|
|||
|
|
|
For conversion from a number to a string, how about using the new literals syntax (XCode >= 4.4), its a little more compact.
(Boxes it up as a NSNumber and converts to a string using the NSObjects' description method) |
|||
|
|
|
convert text entered in textfield to integer
rounding to the nearest double
rounding to the nearest int(considering only positive values)
converting from double to string
or
converting from int to string
or
|
|||
|
|