Skip to content

Instantly share code, notes, and snippets.

@Morse-Code
Created May 24, 2013 16:26
Show Gist options
  • Save Morse-Code/5644699 to your computer and use it in GitHub Desktop.
Save Morse-Code/5644699 to your computer and use it in GitHub Desktop.
Check for Existence Substring in String
NSString *str = @"product.orderEntryListItem.orderItem.caseDiscount";
BOOL found = [str rangeOfString:@"Discount"].location != NSNotFound;
NSLog(@"%d", found);
NSString *str = @"product.orderEntryListItem.orderItem.caseDiscount";
BOOL found = [str rangeOfString:@"Discount" options:NSCaseInsensitiveSearch].location != NSNotFound;
NSLog(@"%d", found);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment