How to compare a string within a another string?
Example:
NSString *temp = @"english, french, japanese, chinese";
NSString *jap = @"japanese";
How do i compare the string "japanese" in temp with the string "japanese" in jap.
Is there any function?
Thanks in advance