ios 学习之 NSPredicate 模糊、精确、查询

ios 学习之 NSPredicate 模糊、精确、查询,第1张

概述简述:Cocoa框架中的NSPredicate用于查询,原理和用法都类似于SQL中的where,作用相当于数据库的过滤取。 定义(最常用到的方法): [cpp]  view plain copy NSPredicate *ca = [NSPredicate predicateWithFormat:(NSString *), ...];   Format: (1)比较运算符>,<,==,>=,<=, 简述:Cocoa框架中的nspredicate用于查询,原理和用法都类似于sql中的where,作用相当于数据库的过滤取。

定义(最常用到的方法):

[cpp]  view plain copy nspredicate *ca = [nspredicate predicateWithFormat:(Nsstring *), ...];   Format:
(1)比较运算符>,<,==,>=,<=,!=
可用于数值及字符串
例:@"number > 100"


(2)范围运算符:IN、BETWEEN
例:@"number BETWEEN {1,5}"
      @"address IN {'shanghai','beijing'}"


(3)字符串本身:SELF 
例:@“SELF == ‘APPLE’"


(4)字符串相关:BEGINSWITH、ENDSWITH、CONTAINS
例:@"name CONTAIN[cd] 'ang'"   //包含某个字符串
       @"name BEGINSWITH[c] 'sh'"     //以某个字符串开头
       @"name ENDSWITH[d] 'ang'"      //以某个字符串结束
        注:[c]不区分大小写[d]不区分发音符号即没有重音符号[cd]既不区分大小写,也不区分发音符号。


(5)通配符:liKE
例:@"name liKE[cd] '*er*'"    //*代表通配符,like也接受[cd].
       @"name liKE[cd] '???er*'"


(6)正则表达式:MATCHES
例:Nsstring *regex = @"^A.+e$";   //以A开头,e结尾
      @"name MATCHES %@",regex


实际应用:
(1)对NSArray进行过滤 

copy NSArray *array = [[NSArray alloc]initWithObjects:@"beijing",@"shanghai",@"guangzou",@"wuhan", nil];     Nsstring *string = @"ang";     nspredicate *pred = [nspredicate predicateWithFormat:@"SELF CONTAINS %@",string];     NSLog(@"%@",[array filteredArrayUsingPredicate:pred]);    


(2)判断字符串首字母是否为字母:

copy Nsstring *regex = @"[A-Za-z]+";     nspredicate *predicate = [nspredicate predicateWithFormat:@"SELF MATCHES %@", regex];          if ([predicate evaluateWithObject:aString]) {     }    
(3)字符串替换:

copy NSError* error = NulL;     NSRegularExpression* regex = [NSRegularExpression regularExpressionWithPattern:@"(enCoding=\")[^\"]+(\")"                                                                                 options:0                                                                                 error:&error];     Nsstring* sample = @"<xml enCoding=\"abc\"></xml><xml enCoding=\"def\"></xml><xml enCoding=\"ttt\"></xml>";     NSLog(@"Start:%@",sample);     Nsstring* result = [regex stringByReplacingMatchesInString:sample                                                           options:0                                                            range:NSMakeRange(0, sample.length)                                                           withTemplate:@"utf-8"];     NSLog(@"Result:%@", result);    
(4)截取字符串如下:

copy //组装一个字符串,需要把里面的网址解析出来     Nsstring *urlString=@"<Meta/><link/><Title>1Q84 BOOK1</Title></head><body>";     //NSRegularExpression类里面调用表达的方法需要传递一个NSError的参数。下面定义一个       NSError *error;          //http+:[^\s]* 这个表达式是检测一个网址的。(?<=Title\>).*(?=</Title)截取HTML文章中的<Title></Title>中内文字的正则表达式     NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"(?<=Title\>).*(?=</Title)" options:0 error:&error];     if (regex != nil) {         NSTextCheckingResult *firstMatch=[regex firstMatchInString:urlString options:0 range:NSMakeRange(0, [urlString length])];                  if (firstMatch) {             NSRange resultRange = [firstMatch rangeAtIndex:0];                          //从urlString当中截取数据             Nsstring *result=[urlString substringWithRange:resultRange];             //输出结果             NSLog(@"->%@<-",result);         }              }    
(5)判断手机号码,电话号码函数  

copy // 正则判断手机号码地址格式   - (BOol)isMobileNumber:(Nsstring *)mobileNum   {          /**          * 手机号码          * 移动:134[0-8],135,136,137,138,139,150,151,157,158,159,182,187,188          * 联通:130,131,132,152,155,156,185,186          * 电信:133,1349,153,180,189          */          Nsstring * MOBILE = @"^1(3[0-9]|5[0-35-9]|8[025-9])\d{8}$";          /**          10         * 中国移动:China Mobile          11         * 134[0-8],188          12         */          Nsstring * CM = @"^1(34[0-8]|(3[5-9]|5[017-9]|8[278])\d)\d{7}$";           15         * 中国联通:China Unicom          16         * 130,186          17         */          Nsstring * CU = @"^1(3[0-2]|5[256]|8[56])\d{8}$";           20         * 中国电信:China Telecom          21         * 133,189          22         */          Nsstring * CT = @"^1((33|53|8[09])[0-9]|349)\d{7}$";           25         * 大陆地区固话及小灵通          26         * 区号:010,020,021,022,023,024,025,027,028,029          27         * 号码:七位或八位          28         */         // Nsstring * PHS = @"^0(10|2[0-5789]|\d{3})\d{7,8}$";               nspredicate *regextestmobile = [nspredicate predicateWithFormat:@"SELF MATCHES %@", MOBILE];        nspredicate *regextestcm = [nspredicate predicateWithFormat:@"SELF MATCHES %@", CM];        nspredicate *regextestcu = [nspredicate predicateWithFormat:@"SELF MATCHES %@", CU];        nspredicate *regextestct = [nspredicate predicateWithFormat:@"SELF MATCHES %@", CT];              if (([regextestmobile evaluateWithObject:mobileNum] == YES)       || ([regextestcm evaluateWithObject:mobileNum] == YES)       || ([regextestct evaluateWithObject:mobileNum] == YES)       || ([regextestcu evaluateWithObject:mobileNum] == YES))       {           if([regextestcm evaluateWithObject:mobileNum] == YES) {             NSLog(@"China Mobile");           } else if([regextestct evaluateWithObject:mobileNum] == YES) {             NSLog(@"China Telecom");           } else if ([regextestcu evaluateWithObject:mobileNum] == YES) {             NSLog(@"China Unicom");           } else {             NSLog(@"UnkNow");           }                      return YES;       }       else            return NO;   }  
(6)邮箱验证、电话号码验证:

copy //是否是有效的正则表达式      +(BOol)isValIDateRegularExpression:(Nsstring *)strDestination byExpression:(Nsstring *)strExpression      nspredicate *predicate = [nspredicatepredicateWithFormat:@"SELF MATCHES %@", strExpression];        return [predicate evaluateWithObject:strDestination];   }   //验证email   +(BOol)isValIDateEmail:(Nsstring *)email {         Nsstring *strRegex = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{1,5}";      BOol rt = [CommonTools isValIDateRegularExpression:email byExpression:strRegex];      return rt;   }   //验证电话号码   +(BOol)isValIDateTelNumber:(Nsstring *)number {      Nsstring *strRegex = @"[0-9]{1,20}";      BOol rt = [CommonTools isValIDateRegularExpression:number byExpression:strRegex];      return rt;   }  
(7)NSDate进行筛选

copy //日期在十天之内:   NSDate *endDate = [[NSDate date] retain];   NSTimeInterval timeInterval= [endDate timeIntervalSinceReferenceDate];   timeInterval -=3600*24*10;   NSDate *beginDate = [[NSDate dateWithTimeIntervalSinceReferenceDate:timeInterval] retain];   //对coredata进行筛选(假设有fetchRequest)   nspredicate *predicate_date =   [nspredicate predicateWithFormat:@"date >= %@ AND date <= %@", beginDate,endDate];   [fetchRequest setPredicate:predicate_date];   //释放retained的对象   [endDate release];   [beginDate release];   总结

以上是内存溢出为你收集整理的ios 学习之 NSPredicate 模糊、精确、查询全部内容,希望文章能够帮你解决ios 学习之 NSPredicate 模糊、精确、查询所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址:https://www.54852.com/web/1052353.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-05-25
下一篇2022-05-25

发表评论

登录后才能评论

评论列表(0条)

    保存