ios - OC中搜索字符串有哪几种方法?哪种更高效一点?
巴扎黑
巴扎黑 2017-04-17 14:46:10
0
1
694

比如,找到"good bad ask com good fault good",字符串中所有的good的位置,请问哪些方法?
rangeOfString只返回匹配的第一个字符串的位置。

巴扎黑
巴扎黑

Antworte allen(1)
Ty80
    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

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage