微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

NSPredicate 正则表达式 信息验证 筛选查询

简述:Cocoa框架中的nspredicate用于查询,原理和用法都类似于sql中的where,作用相当于数据库的过滤取。

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

  1. nspredicate*ca=[nspredicatepredicateWithFormat:(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进行过滤

  1. NSArray*array=[[NSArrayalloc]initWithObjects:@"beijing",@"shanghai",@"guangzou",@"wuhan",nil];
  2. Nsstring*string=@"ang";
  3. nspredicate*pred=[nspredicatepredicateWithFormat:@"SELFCONTAINS%@",string];
  4. NSLog(@"%@",[arrayfilteredArrayUsingPredicate:pred]);


(2)判断字符串首字母是否为字母:
  1. Nsstring*regex=@"[A-Za-z]+";
  2. nspredicate*predicate=[nspredicatepredicateWithFormat:@"SELFMATCHES%@",regex];
  3. if([predicateevaluateWithObject:aString]){
  4. }

(3)字符串替换:
  1. NSError*error=NULL;
  2. NSRegularExpression*regex=[NSRegularExpressionregularExpressionWithPattern:@"(encoding=\")[^\"]+(\")"
  3. options:0
  4. error:&error];
  5. Nsstring*sample=@"<xmlencoding=\"abc\"></xml><xmlencoding=\"def\"></xml><xmlencoding=\"ttt\"></xml>";
  6. NSLog(@"Start:%@",sample);
  7. Nsstring*result=[regexstringByReplacingMatchesInString:sample
  8. options:0
  9. range:NSMakeRange(0,sample.length)
  10. withTemplate:@"$1utf-8$2"];
  11. NSLog(@"Result:%@",result);

(4)截取字符串如下:
  1. //组装一个字符串,需要把里面的网址解析出来
  2. Nsstring*urlString=@"<Meta/><link/><title>1Q84BOOK1</title></head><body>";
  3. //NSRegularExpression类里面调用表达的方法需要传递一个NSError的参数。下面定义一个
  4. NSError*error;
  5. //http+:[^\\s]*这个表达式是检测一个网址的。(?<=title\>).*(?=</title)截取html文章中的<title></title>中内文字的正则表达式
  6. NSRegularExpression*regex=[NSRegularExpressionregularExpressionWithPattern:@"(?<=title\\>).*(?=</title)"options:0error:&error];
  7. if(regex!=nil){
  8. NSTextCheckingResult*firstMatch=[regexfirstMatchInString:urlStringoptions:0range:NSMakeRange(0,[urlStringlength])];
  9. if(firstMatch){
  10. NSRangeresultRange=[firstMatchrangeAtIndex:0];
  11. //从urlString当中截取数据
  12. Nsstring*result=[urlStringsubstringWithRange:resultRange];
  13. //输出结果
  14. NSLog(@"->%@<-",result);
  15. }
  16. }

(5)判断手机号码,电话号码函数
  1. //正则判断手机号码地址格式
  2. -(BOOL)isMobileNumber:(Nsstring*)mobileNum
  3. {
  4. /**
  5. *手机号码
  6. *移动:134[0-8],135,136,137,138,139,150,151,157,158,159,182,187,188
  7. *联通:130,131,132,152,155,156,185,186
  8. *电信:133,1349,153,180,189
  9. */
  10. Nsstring*MOBILE=@"^1(3[0-9]|5[0-35-9]|8[025-9])\\d{8}$";
  11. /**
  12. 10*中国移动:ChinaMobile
  13. 11*134[0-8],188
  14. 12*/
  15. Nsstring*CM=@"^1(34[0-8]|(3[5-9]|5[017-9]|8[278])\\d)\\d{7}$";
  16. /**
  17. 15*中国联通:ChinaUnicom
  18. 16*130,186
  19. 17*/
  20. Nsstring*CU=@"^1(3[0-2]|5[256]|8[56])\\d{8}$";
  21. /**
  22. 20*中国电信:ChinaTelecom
  23. 21*133,189
  24. 22*/
  25. Nsstring*CT=@"^1((33|53|8[09])[0-9]|349)\\d{7}$";
  26. /**
  27. 25*大陆地区固话及小灵通
  28. 26*区号:010,020,021,022,023,024,025,027,028,029
  29. 27*号码:七位或八位
  30. 28*/
  31. //Nsstring*PHS=@"^0(10|2[0-5789]|\\d{3})\\d{7,8}$";
  32. nspredicate*regextestmobile=[nspredicatepredicateWithFormat:@"SELFMATCHES%@",MOBILE];
  33. nspredicate*regextestcm=[nspredicatepredicateWithFormat:@"SELFMATCHES%@",CM];
  34. nspredicate*regextestcu=[nspredicatepredicateWithFormat:@"SELFMATCHES%@",CU];
  35. nspredicate*regextestct=[nspredicatepredicateWithFormat:@"SELFMATCHES%@",CT];
  36. if(([regextestmobileevaluateWithObject:mobileNum]==YES)
  37. ||([regextestcmevaluateWithObject:mobileNum]==YES)
  38. ||([regextestctevaluateWithObject:mobileNum]==YES)
  39. ||([regextestcuevaluateWithObject:mobileNum]==YES))
  40. {
  41. if([regextestcmevaluateWithObject:mobileNum]==YES){
  42. NSLog(@"ChinaMobile");
  43. }elseif([regextestctevaluateWithObject:mobileNum]==YES){
  44. NSLog(@"ChinaTelecom");
  45. }elseif([regextestcuevaluateWithObject:mobileNum]==YES){
  46. NSLog(@"ChinaUnicom");
  47. }else{
  48. NSLog(@"UnkNow");
  49. }
  50. returnYES;
  51. }
  52. else
  53. {
  54. returnNO;
  55. }
  56. }

(6)邮箱验证、电话号码验证:
  1. //是否是有效的正则表达式
  2. +(BOOL)isValidateRegularExpression:(Nsstring*)strDestinationbyExpression:(Nsstring*)strExpression
  3. {
  4. nspredicate*predicate=[nspredicatepredicateWithFormat:@"SELFMATCHES%@",strExpression];
  5. return[predicateevaluateWithObject:strDestination];
  6. }
  7. //验证email
  8. +(BOOL)isValidateEmail:(Nsstring*)email{
  9. Nsstring*strRegex=@"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{1,5}";
  10. BOOLrt=[CommonToolsisValidateRegularExpression:emailbyExpression:strRegex];
  11. returnrt;
  12. }
  13. //验证电话号码
  14. +(BOOL)isValidateTelNumber:(Nsstring*)number{
  15. Nsstring*strRegex=@"[0-9]{1,20}";
  16. BOOLrt=[CommonToolsisValidateRegularExpression:numberbyExpression:strRegex];
  17. returnrt;
  18. }

(7)NSDate进行筛选
  1. //日期在十天之内:
  2. NSDate*endDate=[[NSDatedate]retain];
  3. NSTimeIntervaltimeInterval=[endDatetimeIntervalSinceReferenceDate];
  4. timeInterval-=3600*24*10;
  5. NSDate*beginDate=[[NSDatedateWithTimeIntervalSinceReferenceDate:timeInterval]retain];
  6. //对coredata进行筛选(假设有fetchRequest)
  7. nspredicate*predicate_date=
  8. [nspredicatepredicateWithFormat:@"date>=%@ANDdate<=%@",beginDate,endDate];
  9. [fetchRequestsetPredicate:predicate_date];
  10. //释放retained的对象
  11. [endDaterelease];
  12. [beginDaterelease];

原文地址:https://www.jb51.cc/regex/361718.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐