NSString *string = @"ABCDEFG";
NSString *FindString = @"DG";
BOOL result = [string containString(????):FindString];
I want a result if FindString is contained in string.
Because ‘D’ and ‘G’ is contained into string, above result is YES.
Is there a simple way to do this?
Something along the lines of..