比如,找到"good bad ask com good fault good",字符串中所有的good的位置,请问哪些方法?rangeOfString只返回匹配的第一个字符串的位置。
"good bad ask com good fault good"
good
rangeOfString
NSString *text = @"good bad ask com good fault good"; NSError *error; NSRegularExpression *regular = [[NSRegularExpression alloc] initWithPattern:@"good" options:NSRegularExpressionCaseInsensitive error:&error]; if (!error) { NSArray *results = [regular matchesInString:text options:NSMatchingReportProgress range:NSMakeRange(0, text.length)]; NSLog(@"%@", results); } else { NSLog(@"%@", error); }
这里有一个不错的教程http://www.cocoachina.com/ios/20150415/11568.html
这里有一个不错的教程http://www.cocoachina.com/ios/20150415/11568.html