vote up 2 vote down star
1

How to check if the content of a NSString is an integer value? Is there any readily available way?

There got to be some better way then doing something like this:

- (BOOL)isInteger:(NSString *)toCheck {
  if([toCheck intValue] != 0) {
    return true;
  } else if([toCheck isEqualToString:@"0"]) {
    return true;
  } else {
    return false;
  }
}
flag

2 Answers

vote up 11 vote down check

You could use the -intValue or -integerValue methods. Returns zero if the string doesn't start with an integer which is a bit of a shame as zero is a valid value for an integer...

A better option might be to use [NSScanner scanInt:] which returns a BOOL indicating whether or not it found a suitable value.

link|flag
Right on! A simple [[NSScanner scannerWithString:value] scanInt:nil] will check if "value" has an integer value. Thanks! – carlosb Feb 19 at 18:38
vote up 1 vote down

Something like this:

NSScanner* scan = [NSScanner scannerWithString:toCheck]; 
int val; 
return [scan scanInt:&val] && [scan isAtEnd];
link|flag

Your Answer

Get an OpenID
or

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