NSString *string = @"A long term stackoverflow.html";
NSString *expression = @"stack(.*).html";
NSPredicate *predicate = [NSPredicate predicateWithFormat"SELF MATCHES %@", expression];
BOOL match = [predicate evaluateWithObject:string]
if(match){
NSLog(@"found");
} else {
NSLog(@"not found");
}
我如何搜索字符串中是否存在表达式。上面的代码适用于一个词。但如果我在要搜索的字符串中添加更多单词,则不会
Best Answer-推荐答案 strong>
如果你想检查一个带有正则表达式值的字符串,那么你应该使用 NSRegularExpression 而不是 NSPredicate 。
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern"stack(.*).html" options:0 error:nil];
然后你就可以使用函数来查找匹配项了……
NSString *string = @"stackoverflow.html";
NSUInteger matchCount = [regex numberOfMatchesInString:string options:0 range:NSMakeRange(0, string.length)];
NSLog(@"Number of matches = %d", matchCount);
注意:我在创建正则表达式模式方面很糟糕,所以我刚刚使用了你的模式和示例。我不知道模式是否真的会在这个字符串中找到匹配项,但如果有匹配项,它将起作用。
关于ios - 使用 NSPredicate 或正则表达式检查一个大字符串是否包含另一个字符串,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/21701170/
|