vote up 12 vote down star
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!

flag

66% accept rate

10 Answers

vote up 13 vote down check

You can convert an NSString into a double with

double myDouble = [myString doubleValue];

Rounding to the nearest int can then be done as

int myInt = (int)(myDouble + (myDouble>0 ? 0.5 : -0.5))

I'm honestly not sure if there's a more streamlined way to convert back into a string than

NSString* myNewString = [NSString stringWithFormat:@"%d", myInt];
link|flag
2  
You don't necessarily want to do this, because different locales format numbers differently. Some will write "1000" for one thousand, while others will write "1,000" and others "1.000" - which do you get from -[NSString doubleValue]? – Chris Hanson Oct 4 '08 at 19:06
Double is a numeric data type - it does not contain any formatting. Calling [NSString doubleValue] would return 1000 because it's just a number. – Andy Oct 5 '08 at 12:53
2  
And an NSString cannot contain a number, only a representation of a number. That representation may be in any of a variety of formats that differ by locale. – Chris Hanson Oct 6 '08 at 6:08
vote up 17 vote down

To really convert from a string to a number properly, you need to use an instance of NSNumberFormatter configured for the locale from which you're reading the string.

Different locales will format numbers differently. For example, in some parts of the world, COMMA is used as a decimal separator while in others it is PERIOD — and the thousands separator (when used) is reversed. Except when it's a space. Or not present at all.

It really depends on the provenance of the input. The safest thing to do is configure an NSNumberFormatter for the way your input is formatted and use -[NSFormatter numberFromString:] to get an NSNumber from it. If you want to handle conversion errors, you can use -[NSFormatter getObjectValue:forString:range:error:] instead.

link|flag
Or you can use a localised scanner, for example one created with [NSScanner localizedScannerWithString:], and then [scanner scanDouble:&aDouble] will scan in a double based on the user's current locale. – dreamlax Jun 7 at 11:17
vote up 4 vote down

Adding to olliej's answer, you can convert from an int back to a string with NSNumber's stringValue:

[[NSNumber numberWithInt:myInt] stringValue]

stringValue on an NSNumber invokes descriptionWithLocale:nil, giving you a localized string representation of value. I'm not sure if [NSString stringWithFormat:@"%d",myInt] will give you a properly localized reprsentation of myInt.

link|flag
vote up 3 vote down

olliej's rounding method is wrong for negative numbers

  • 2.4 rounded is 2 (olliej's method gets this right)
  • −2.4 rounded is −2 (olliej's method returns -1)

Here's an alternative

  int myInt = (int)(myDouble + (myDouble>0 ? 0.5 : -0.5))

You could of course use a rounding function from math.h

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

For rounding, you should probably use the C functions defined in math.h.

int roundedX = round(x);

Hold down Option and double click on round in Xcode and it will show you the man page with various functions for rounding different types.

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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 round, lround, or possibly rint -- but they don't exist on all platforms as far as I am aware. But then if you're using Obj-C you're probably on MacOS which does provide them.

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

This is the easiest way I know of:

float myFloat = 5.3;
NSInteger myInt = (NSInteger)myFloat;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.