Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I check if a string (NSString) contains another smaller string? I was hoping for something like:

NSString *string = @"hello bla bla";
NSLog(@"%d",[string containsSubstring:@"hello"]);

But the closest I could find was:

if ([string rangeOfString:@"hello"] == 0) {
    NSLog(@"sub string doesnt exist");
} else {
    NSLog(@"exists");
}

Anyway is that the best way to find if a string contains another string.

share|improve this question
If you'd like to see -[NSString containsString:] added, go to bugreport.apple.com and file a bug requesting it. You can even mention <radar://7710615>, which is the original bug. – Quinn Taylor Sep 18 '12 at 20:30
I'd like to see it added as well, but in the meantime it's relatively easy to add it as a category on NSString. – isaac Jan 11 at 1:48

5 Answers

up vote 602 down vote accepted
NSString *string = @"hello bla bla";
if ([string rangeOfString:@"bla"].location == NSNotFound) {
  NSLog(@"string does not contain bla");
} else {
  NSLog(@"string contains bla!");
}

The key is noticing that rangeOfString: returns an NSRange struct, and the documentation says that it returns the struct {NSNotFound, 0} if the "haystack" does not contain the "needle".

share|improve this answer
2  
From OP: "I typed that straight into stack so sorry if there are errors, but there would be if I was doing it in Xcode so you don't need to point any out." – KennyTM May 2 '10 at 16:24
I kind of meant things like missing out letters and semi colons and such. but this answer helps because it's a little more "refined" (I think that's the correct word to use here) – Jonathan. May 2 '10 at 17:00
4  
@Jonathan. it's not a "little more refined." It's right. Your original code ([string rangeOfString:@"hello"] == 0) will not work. – Yar Apr 12 '11 at 21:45
@Yar, as I said I wasn't sure what the correct word was, and why it is double quote marks. (this post is just under a year old) – Jonathan. Apr 12 '11 at 22:06
25  
To make a case insensitive search use "if ([string rangeOfString:@"bla" options:NSCaseInsensitiveSearch].location != NSNotFound)" – Vanja Mar 28 '12 at 7:28
show 7 more comments

Make a category on NSString:

@interface NSString ( containsCategory )
- (BOOL) containsString: (NSString*) substring;
@end

// - - - - 

@implementation NSString ( containsCategory )

- (BOOL) containsString: (NSString*) substring
{    
    NSRange range = [self rangeOfString : substring];
    BOOL found = ( range.location != NSNotFound );
    return found;
}

@end
share|improve this answer
6  
+1 for clearer resulting code and reusability. I turned it into the one liner return [self rangeOfString:substring].location != NSNotFound; and included it in my refactoring library, es_ios_utils. github.com/peterdeweese/es_ios_utils – Peter DeWeese Jul 21 '11 at 15:21
5  
There is actually a good reason I kept it as three lines; my brain can process it effortlessly. But if it is condensed then an amount of head scratching ( albeit in this case minute ) is required. +1 back for open sourcing your library. – P i Jul 21 '11 at 15:53
I actually have nothing against using three lines for it and it is certainly clearer for a SO answer. – Peter DeWeese Jul 21 '11 at 15:57
Awesome now how would you remove this string or the other half ? – FreeAppl3 Sep 28 '11 at 7:53
that would be another question ;) – P i Sep 29 '11 at 10:43
show 4 more comments
NSString *myString = @"hello bla bla";
NSRange rangeValue = [myString rangeOfString:@"hello" options:NSCaseInsensitiveSearch];

if (rangeValue.length > 0){

NSLog(@"string contains hello");

} 

else {

NSLog(@"string does not contain hello!");

}

//You can alternatively use following too :

if (rangeValue.location == NSNotFound) {

NSLog(@"string does not contain hello");

} 

else {

NSLog(@"string contains hello!");

}
share|improve this answer

Oneliner:

NSString *string = @"hello bla bla";
NSLog(@"String %@", ([string rangeOfString:@"bla"].location == NSNotFound) ? @"not found" : @"cotains bla"); 
share|improve this answer

A improved version of P i solution, a category on NSString, that not only will tell, if a string is found within another sting, but also takes a range by reference.

@interface NSString (Contains)
-(BOOL)containsString: (NSString*)substring
                range:(NSRange*)range;

-(BOOL)containsString:(NSString *)substring;
@end

@implementation NSString (Contains)

-(BOOL)containsString:(NSString *)substring
                range:(NSRange *)range{

    NSRange r = [self rangeOfString : substring];
    BOOL found = ( r.location != NSNotFound );
    if (range != NULL) *range = r;
    return found;
}


-(BOOL)containsString:(NSString *)substring
{
    return [self containsString:substring
                          range:NULL];
}

@end

use it like:

NSString *string = @"Hello, World!";

//if you only want to ensure a string contains a certain substring
if ([string containsString:@"ello" range:NULL]) {
    NSLog(@"YES");
}
// or simply
if ([string containsString:@"ello"]) {
    NSLog(@"YES");
}

//if you also want to know substring's range
NSRange range;
if ([string containsString:@"ello" range:&range]) {
    NSLog(@"%@", NSStringFromRange(range));
}
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.