通过查看NSTextCheckingResult
的文档,我认为如果找不到NSRegularExpression
搜索中的匹配项,则NSCheckingResult
的范围属性将设置为{NSNotFound,0}
}
根据我的测试,我发现如果找不到匹配项,NSCheckingResult
范围设置为{0,0}
。这是一个小问题,但我只是想澄清一下我对这是如何工作的理解。
// REGEXPRESSION
NSString *textBuffer = @"1234567890";
NSString *pattern = @"(([A-Z]+))";
NSRegularExpression *regExp = [NSRegularExpression regularExpressionWithPattern:pattern options:0 error:nil];
NSTextCheckingResult *match = [regExp firstMatchInString:textBuffer options:0 range:NSMakeRange(0, [textBuffer length])];
// ERROR CHECK
if([match range].location == NSNotFound) NSLog(@"Match Not found");
NSLog(@"location: %d", [match range].location);
NSLog(@"length : %d", [match range].length);
// OUTPUT
location: 0
length : 0
编辑:
在此示例中,NSTextCheckingResult *match
被设置为nil
,这可能是位置和长度返回零(消息到nil对象)的原因。
if(!match) NSLog(@"Match Not Found");
因此我猜测NSNotFound
仅在有多个捕获组时返回,它代表一个空组。
答案 0 :(得分:2)
是的,因为空匹配。 {NSNotFound, 0}
可以为未参加比赛的组返回rangeAtIndex:
。