up vote 7 down vote favorite
2
share [g+] share [fb]

Are there anything similar to an indexOf function in the NSString objects?

link|improve this question

feedback

3 Answers

up vote 18 down vote accepted

Use -[NSString rangeOfString:]:

- (NSRange)rangeOfString:(NSString *)aString;

Finds and returns the range of the first occurrence of a given string within the receiver.

link|improve this answer
feedback

If you want just know when String a contains String b use my way to do this.

#define contains(str1, str2) ([str1 rangeOfString: str2 ].location != NSNotFound)

//using 
NSString a = @"PUC MINAS - BRAZIL";

NSString b = @"BRAZIL";

if( contains(a,b) ){
    //TO DO HERE
}

This is less readable but improves performance

link|improve this answer
Just what I needed--- Thanks! – Greg Krsak Nov 27 '11 at 6:54
feedback

I wrote a category to extend original NSString object. Maybe you guys can reference it. (You also can see the article in my blog too.)

ExtendNSString.h:

#import <Foundation/Foundation.h>

@interface NSString (util)

- (int) indexOf:(NSString *)text;

@end

ExtendNSStriing.m:

#import "ExtendNSString.h"

@implementation NSString (util)

- (int) indexOf:(NSString *)text {
    NSRange range = [self rangeOfString:text];
    if ( range.length > 0 ) {
        return range.location;
    } else {
        return -1;
    }
}

@end
link|improve this answer
A better usage of NSRange should be as follows code - (int) indexOf:(NSString *)text { NSRange range = [self rangeOfString:text]; if (range.location != NSNotFound) { return range.location; } else { return -1; } } code – loretoparisi Oct 12 '11 at 10:35
feedback

Your Answer

 
or
required, but never shown

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