在SQL中作为查询条件通常用WHERE,但在CoreData中作为查询条件就可以用到NSPredicate.
NSPredicate 不单可以和CoreData中的FetchRequest 配合使用。也可以与NSArray配合使用。
NSPredicate 中支持的关键词和条件符:
如:
NSPredicate * qcondition= [NSPredicate predicateWithFormat:@"salary >= 10000"];
如:
@"employee.name BEGINSWITH[cd] '李'" //姓李的员工
@"employee.name ENDSWITH[c] '梦'" //以梦结束的员工
@"employee.name CONTAINS[d] '宗'" //包含有"宗"字的员工
注:[c]不区分大小写[d]不区分发音符号即没有重音符号[cd]既不区分大小写,也不区分发音符号。
如:
NSArray * test = =[NSArray arrayWithObjects: @"guangzhou", @"beijing", @"shanghai", nil];
@"SELF='beijing'"
LIKE 使用?表示一个字符,*表示多个字符,也可以与c、d 连用。
如:
@"car.name LIKE '?he?'" //四个字符中,中间为he
@"car.name LIKE[c] '*jp'" //以jp结束
如:
NSString *regex = @"^E.+e$";//以E 开头,以e 结尾的字符。
NSPredicate *pre= [NSPredicate predicateWithFormat:@"SELF MATCHES %@", regex];
if([pre evaluateWithObject: @"Employee"]){
NSLog(@"matches YES");
} else {
NSLog(@"matches NO");
}
如:
@"salary BWTEEN {5000,10000}"
@"em_dept IN '开发'"
如:
@"employee.name = 'john' AND employee.age = 28"
NSPredicate *preTemplate = [NSPredicate predicateWithFormat:@"name==$NAME"];
NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:@"Name1", @"NAME",nil];
NSPredicate *pre = [preTemplate predicateWithSubstitutionVariables: dic];
输入的字符包含: ?.{}[+*() 等特殊字符时,异常报错
SQLCore dispatchRequest: exception handling request: <NSSQLFetchRequestContext: 0x600000796ae0> , Can’t do regex matching, reason: (Can’t open pattern U_REGEX_RULE_SYNTAX (string name, pattern {.}, case 1, canon 0)) with userInfo of (null), 需要多输入的字符转换:
// NSString *inputName = @"?.{}[\+*() ";
NSString *convertedName = [NSRegularExpression escapedPatternForString: inputName];