开发中用到检索字符串,并
获取获取符合条件的字符串数组。
@H_
502_0@ 网上找了下,可以利用正则表达式完成,结果是个数组,数组元素是NSTextCheckingResult。
@H_
502_0@
效果不错,小记一下。
@H_
502_0@
@H_
502_0@
直接看示例代码
NSString *str = @"ddididd{{{didd}}diid";
NSString *regexStr = @"d[i]+d";
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:regexStr options:0 error:nil];
NSArray *matches = [regex matchesInString:str options:0 range:NSMakeRange(0,str.length)];
for (NSTextCheckingResult* match in matches)
{
NSRange range = match.range;
NSString *temp = [str substringWithRange:range];
NSLog(@"RESULT===%@",temp);
}
@H_
502_0@
执行结果
2015-08-24 18:49:32.234 test02[16720:2141808] RESULT===did
2015-08-24 18:49:32.235 test02[16720:2141808] RESULT===did
2015-08-24 18:49:32.235 test02[16720:2141808] RESULT===diid