我的代码在下面,但它不起作用。
NSString *regex = @"^#";
NSPredicate *regextest = [NSPredicate
predicateWithFormat:@"SELF MATCHES %@", regex];
if ([regextest evaluateWithObject:secondHalfString] == YES) {
NSLog(@"Match!");
} else {
NSLog(@"No match!");
}
哪里不对了?