[categories] [index] [all (552)] [latest]
NSString *s = @"Hello World!"; NSString *re = @".*l{2}.*"; NSPredicate *p = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", re]; NSLog(@"Match: %d", [p evaluateWithObject:s]);