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.

I've got a number in a NSString @"15". I want to convert this to NSUInteger, but I don't know how to do that...

share|improve this question
1  
To request support for reading unsigned values from NSString, please visit bugreport.apple.com and file a dupe of radar://2264733 against component Foundation | X. – Quinn Taylor Jan 23 at 21:46

2 Answers

up vote 16 down vote accepted
NSString *str = @"15";
// Extract an integer number, returns 0 if there's no valid number at the start of the string.
NSInteger i = [str integerValue];

If you really want an NSUInteger, just cast it, but you may want to test the value beforehand.

share|improve this answer
1  
I think that should read [str integerValue]; – dreamlax May 2 '10 at 5:26
D'oh! Fixed, thanks dreamlax. – squelart May 7 '10 at 10:24
A little incomplete. This won't work if the value is larger than INT_MAX. And if this is quite likely if you are using it for things like byte lengths. – Corey Floyd Oct 15 '10 at 7:45
3  
Casting it to an NSUInteger (as mentioned) would look like NSUInteger i = (NSUInteger)[str integerValue]; – CaptainPete Oct 27 '11 at 0:32

you can try with [string longLongValue] or [string intValue]..

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.