Equality can be tested with: stringInstance == MyFirstConstant, not necessary to do a string comparison (isEqualToString)
Advertisement
Categories
Equality can be tested with: stringInstance == MyFirstConstant, not necessary to do a string comparison (isEqualToString)
http://docs.python.org/library/difflib.html
This snippet shows how to search for a string within another string and how to check if two strings are equal. NSString* needle = @”hello”; NSString* haystack = @”hello world”; NSRange matching = [haystack rangeOfString : needle]; // Searching for a string within another string if(matching.location == NSNotFound){ // Needle not found in haystack } [...]