Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I convert a NSString containing a number of any primitive data type (e.g. int, float, char, unsigned int, etc.)? The problem is, I don't know which number type the string will contain at runtime.

I have an idea how to do it, but I'm not sure if this works with any type, also unsigned and floating point values:

long long scannedNumber;
NSScanner *scanner = [NSScanner scannerWithString:aString];
[scanner scanLongLong:&scannedNumber]; 
NSNumber *number = [NSNumber numberWithLongLong: scannedNumber];

Thanks for the help.

share|improve this question

8 Answers

up vote 444 down vote accepted

Use an NSNumberFormatter:

NSNumberFormatter * f = [[NSNumberFormatter alloc] init];
[f setNumberStyle:NSNumberFormatterDecimalStyle];
NSNumber * myNumber = [f numberFromString:@"42"];
[f release];

If the string is not a valid number, then myNumber will be nil. If it is a valid number, then you now have all of the NSNumber goodness to figure out what kind of number it actually is.

share|improve this answer
Thank you, that is exactly what I need. – Enyra Sep 20 '09 at 19:16
this is not able to convert 1,3000 to number – Sunil Pandey Jun 20 '11 at 11:47
1  
@Sunil you've either got the comma in the wrong spot or you have an extra zero. – Dave DeLong Jun 20 '11 at 14:25
9  
+1 for 42, it's always good to see that! – Irene May 31 '12 at 14:00
2  
For people where it doesn't seem to work: Check if it's related to your locale. The NSNumberFormatter (as far as I know) by default uses the US locale, i.e. expects the decimal separator to be the "." character. If you use "," to separate the fraction, you may need to tell the formatter to use your current locale: [f setLocale:[NSLocale currentLocale]]; – pille Sep 28 '12 at 9:50
show 8 more comments

You can use -[NSString integerValue], -[NSString floatValue], etc. However, the correct (locale-sensitive, etc.) way to do this is to use -[NSNumberFormatter numberFromString:] which will give you an NSNumber converted from the appropriate locale and given the settings of the NSNumberFormatter (including whether it will allow floating point values).

share|improve this answer
5  
+q Depending on the situation, non-locale-sensitive might actually be the correct way. – Thilo Sep 12 '11 at 6:46
1  
I had to convert @"2000" to an int and [@"2000" integerValue] worked nicely and is a little simpler for my case. – Besi Feb 2 '12 at 15:09

Here's how I did it because I know that I'll only have strings that represent ints, e.g., @"123", @"34839", etc.

[NSNumber numberWithInt:[[dictionary objectForKey:@"id"] intValue]];

where [dictionary objectForKey:@"id"] returns an NSString like @"2355342". So, if you're working with a hard-coded string, you could do:

NSString *intString = @"34534";
[NSNumber numberWithInt:[intString intValue]];

Or, if you're using Objective-C literals:

@([intString intValue]);

Note: This is not very flexible. I'm not sure if it will work with strings like: @"23 ft", @"34.45", etc.

share|improve this answer

If you know that you receive integers, you could use:

NSString* val = @"12";
[NSNumber numberWithInt:[val intValue]];
share|improve this answer

Here's a working sample of NSNumberFormatter reading localized number NSString (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 ("8,765.4 " works), this cannot handle leading white space and this cannot handle stray text characters. (Bad input strings: " 8" and "8q" and "8 q".)

NSString *tempStr = @"8,765.4";  
     // localization allows other thousands separators, also.
NSNumberFormatter * myNumFormatter = [[NSNumberFormatter alloc] init];
[myNumFormatter setLocale:[NSLocale currentLocale]]; // happen by default?
[myNumFormatter setFormatterBehavior:NSNumberFormatterBehavior10_4];
     // next line is very important!
[myNumFormatter setNumberStyle:NSNumberFormatterDecimalStyle]; // crucial

NSNumber *tempNum = [myNumFormatter numberFromString:tempStr];
NSLog(@"string '%@' gives NSNumber '%@' with intValue '%i'", 
    tempStr, tempNum, [tempNum intValue]);
[myNumFormatter release];  // good citizen
share|improve this answer
this doesn't work for me. I'm developing for 5.0 with xcode 4.3.2. any ideas why? – acecapades Sep 7 '12 at 3:34

Thanks All! I am combined feedback and finally manage to convert from text input ( string ) to Integer. Plus it could tell me whether the input is integer :)

NSNumberFormatter * f = [[NSNumberFormatter alloc] init];
    [f setNumberStyle:NSNumberFormatterDecimalStyle];
    NSNumber * myNumber = [f numberFromString:thresholdInput.text];

    int minThreshold = [myNumber intValue];


NSLog(@"Setting for minThreshold %i", minThreshold);

if ((int)minThreshold < 1 )
{
    NSLog(@"Not a number");
}
else {
    NSLog(@"Setting for integer minThreshold %i", minThreshold);
}


[f release];
share|improve this answer

What about C's standard atoi?

int num = atoi([scannedNumber cStringUsingEncoding:NSUTF8StringEncoding]);

Do you think there are any caveats?

share|improve this answer

You can also do this:

NSNumber *number = @([dictionary[@"id"] intValue]]);

Have fun!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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