正则表达式的应用

记下来 省的到时候 没地方找

- (BOOL)validateWithRegex:(NSString *)regex {
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", regex];
    return [predicate evaluateWithObject:self];
} 

你可能感兴趣的:(正则表达式)