本文主要是介绍谓词的使用(predicate),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原文:http://blog.csdn.net/quanzheng92/article/details/46532021
/** 一 运算符*/
// 1 "> < >= <= === != <> between" 比较运算符
NSPredicate *predicate =[NSPredicatepredicateWithFormat:@"age > 3"];
// 2 "and/&& 与 or/||或 not/!非"逻辑运算
NSPredicate *predic =[NSPredicatepredicateWithFormat:@"age > 3||name = Du1"];
// 3 ANY,SOME :指定下列表达式中的任意元素。(eg:ANY person.age < 18) ALL:指定下列表达式中的所有元素。(eg:ALL person.age < 18) NONE:指定下列表达式中没有的元素。(eg:NONE person.age < 18) IN:等于SQL的IN操作,左边的表达式必须出现在右边指定的集合中。(eg:name IN{"Ben","Jhon","Amy"})
NSPredicate *pred =[NSPredicatepredicateWithFormat:@"name in {'Du1','Du2'}"];
// 4 数组 array[index]:指定数组中特定索引处的元素 array[FIRST]:指定数组中的第一个元素 array[LAST]:指定数组中的最后一个元素 array[SIZE]:指定数组的大小
/** 二 语句*/
//1针对数组的语句
NSArray *result = [arrfilteredArrayUsingPredicate:predicate]; //针对不可变数组进行过滤,将符合条件的组成一个新的数组进行返回
NSLog(@"调用正对不可变数组过滤方法:%@",result);
[arr filterUsingPredicate:predicate];//针对可变数组进行过滤,过滤掉可变数组中不符合条件的。-
NSLog(@"调用针对可变数组的过滤方法:%@",arr);
//2 针对单个对象的语句
// [predicate evaluateWithObject:result[0]];//向谓词对象发送该方法参数是过滤对象 常见和正则表达式配合使用
for (Person *personin result) {
//判断是否满足条件
if ([predicateevaluateWithObject:person]) {
NSLog(@"满足条件...");
}else{
NSLog(@"不满足条件...");
}
}
//正则表达式 当谓词和正则联用时,我们就需要认识两个新的关键字:SELF、MATCHES self的意思是指代要验证的字符串本身,matches是一个字符串操作:表示匹配。我们用self+matches+正则表达式就可以拼接出一个谓词了
NSString *testStr = @"wo";
NSString *regex = @"^[A-Za-z]*$";//只能是字母 不分大小写
NSPredicate *predicateRe1 =[NSPredicate predicateWithFormat:@"self matches%@",regex];
BOOL Result =[predicateRe1 evaluateWithObject:testStr];
NSLog(@"匹配结果 == %d",Result);
//由于NSRegularExpression 需要一个NSError对象
NSError *error;
//第一个参数是正则表达式 第二个参数是匹配操作的类型(枚举值) 第三个参数是error地址
NSRegularExpression *regularExpression =[NSRegularExpression regularExpressionWithPattern:regex options:NSRegularExpressionCaseInsensitive error:&error];
if (!error) {
NSRange range = NSMakeRange(0, testStr.length);
NSTextCheckingResult *match =[regularExpression firstMatchInString:testStr options:NSMatchingReportProgress range:range];
if (match) {
NSLog(@"NSRegularExpression匹配成功");
}
//如果发生错误 打印错误类型
}else{
NSLog(@"错误类型:%@",error);
}
这篇关于谓词的使用(predicate)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!