Created
May 24, 2013 16:26
-
-
Save Morse-Code/5644699 to your computer and use it in GitHub Desktop.
Check for Existence Substring in String
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NSString *str = @"product.orderEntryListItem.orderItem.caseDiscount"; | |
BOOL found = [str rangeOfString:@"Discount"].location != NSNotFound; | |
NSLog(@"%d", found); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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