【原/转】iOS中非常强大的过滤器:NSPredicate

2024-02-03 06:10

本文主要是介绍【原/转】iOS中非常强大的过滤器:NSPredicate,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在APPLE的官方Demo:UICatalog中实现UISearchBar模糊搜索功能是这么做的:

复制代码
1 - (void)viewDidLoad {
2     [super viewDidLoad];
3 
4     self.allResults = @[@"Here's", @"to", @"the", @"crazy", @"ones.", @"The", @"misfits.", @"The", @"rebels.", @"The", @"troublemakers.", @"The", @"round", @"pegs", @"in", @"the", @"square", @"holes.", @"The", @"ones", @"who", @"see", @"things", @"differently.", @"They're", @"not", @"fond", @"of", @"rules.", @"And", @"they", @"have", @"no", @"respect", @"for", @"the", @"status", @"quo.", @"You", @"can", @"quote", @"them,", @"disagree", @"with", @"them,", @"glorify", @"or", @"vilify", @"them.", @"About", @"the", @"only", @"thing", @"you", @"can't", @"do", @"is", @"ignore", @"them.", @"Because", @"they", @"change", @"things.", @"They", @"push", @"the", @"human", @"race", @"forward.", @"And", @"while", @"some", @"may", @"see", @"them", @"as", @"the", @"crazy", @"ones,", @"we", @"see", @"genius.", @"Because", @"the", @"people", @"who", @"are", @"crazy", @"enough", @"to", @"think", @"they", @"can", @"change", @"the", @"world,", @"are", @"the", @"ones", @"who", @"do."];
5     
6     self.visibleResults = self.allResults;
7 }
复制代码
复制代码
 1 - (void)setFilterString:(NSString *)filterString {
 2     _filterString = filterString;
 3     
 4     if (!filterString || filterString.length <= 0) {
 5         self.visibleResults = self.allResults;
 6     }
 7     else {
 8         NSPredicate *filterPredicate = [NSPredicate predicateWithFormat:@"self contains[c] %@", filterString];9         self.visibleResults = [self.allResults filteredArrayUsingPredicate:filterPredicate];
10     }
11     
12     [self.tableView reloadData];
13 }
复制代码

其中,self.allResults是列表的全部结果,self.visibleResults是输入搜索词后出现的模糊匹配结果。流程如下图所示:

从上述代码可以看到,APPLE获取到模糊搜索结果所用的代码仅仅两行。由此可见,NSPredicate的功能不可小觑。这也是本文的目的,全方位地介绍一下在cocoa框架下的搜索匹配利器:NSPredicate。Cocoa框架中的NSPredicate用于查询,原理和用法都类似于SQL中的where,作用相当于数据库的过滤取。

1、初始化

1
NSPredicate  *ca = [ NSPredicate  predicateWithFormat:( NSString  *), ...];

那传入的初始化NSString到底要满足怎样的格式呢?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(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

2、使用

2.1 场景1:NSArray过滤,也就是文章开头的场景

1
2
3
4
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.2 场景2:判断字符串首字母是否为字母

1
2
3
4
5
NSString  *regex = @ "[A-Za-z]+"
NSPredicate  *predicate = [ NSPredicate  predicateWithFormat:@ "SELF MATCHES %@" , regex]; 
   
if  ([predicate evaluateWithObject:aString]) { 

2.3 场景3:字符串替换

1
2
3
4
5
6
7
8
9
10
11
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:@ "$1utf-8$2" ]; 
NSLog (@ "Result:%@" , result); 

2.4 场景4:截取字符串

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//组装一个字符串,需要把里面的网址解析出来 
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); 
    
       

2.5 场景5:判断是否是手机号码或者电话号码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//组装一个字符串,需要把里面的网址解析出来 
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); 
    
       

2.6 场景6:验证邮箱、电话号码有效性

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//是否是有效的正则表达式
+( 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;
}

2.7 场景7:NSDate筛选

1
2
3
4
5
6
7
8
9
10
11
12
13
//日期在十天之内:
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];

 本文转自编程小翁博客园博客,原文链接:http://www.cnblogs.com/wengzilin/p/4276612.html,如需转载请自行联系原作者

这篇关于【原/转】iOS中非常强大的过滤器:NSPredicate的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/673200

相关文章

深度解析Spring Boot拦截器Interceptor与过滤器Filter的区别与实战指南

《深度解析SpringBoot拦截器Interceptor与过滤器Filter的区别与实战指南》本文深度解析SpringBoot中拦截器与过滤器的区别,涵盖执行顺序、依赖关系、异常处理等核心差异,并... 目录Spring Boot拦截器(Interceptor)与过滤器(Filter)深度解析:区别、实现

spring-gateway filters添加自定义过滤器实现流程分析(可插拔)

《spring-gatewayfilters添加自定义过滤器实现流程分析(可插拔)》:本文主要介绍spring-gatewayfilters添加自定义过滤器实现流程分析(可插拔),本文通过实例图... 目录需求背景需求拆解设计流程及作用域逻辑处理代码逻辑需求背景公司要求,通过公司网络代理访问的请求需要做请

Spring Boot拦截器Interceptor与过滤器Filter深度解析(区别、实现与实战指南)

《SpringBoot拦截器Interceptor与过滤器Filter深度解析(区别、实现与实战指南)》:本文主要介绍SpringBoot拦截器Interceptor与过滤器Filter深度解析... 目录Spring Boot拦截器(Interceptor)与过滤器(Filter)深度解析:区别、实现与实

9个SpringBoot中的自带实用过滤器使用详解

《9个SpringBoot中的自带实用过滤器使用详解》在SpringBoot应用中,过滤器(Filter)是处理HTTP请求和响应的重要组件,SpringBoot自带了许多实用的过滤器,如字符编码,跨... 目录1. CharacterEncodingFilter - 字符编码过滤器功能和配置手动配置示例2

Android与iOS设备MAC地址生成原理及Java实现详解

《Android与iOS设备MAC地址生成原理及Java实现详解》在无线网络通信中,MAC(MediaAccessControl)地址是设备的唯一网络标识符,本文主要介绍了Android与iOS设备M... 目录引言1. MAC地址基础1.1 MAC地址的组成1.2 MAC地址的分类2. android与I

Spring Boot拦截器Interceptor与过滤器Filter详细教程(示例详解)

《SpringBoot拦截器Interceptor与过滤器Filter详细教程(示例详解)》本文详细介绍了SpringBoot中的拦截器(Interceptor)和过滤器(Filter),包括它们的... 目录Spring Boot拦截器(Interceptor)与过滤器(Filter)详细教程1. 概述1

dubbo3 filter(过滤器)如何自定义过滤器

《dubbo3filter(过滤器)如何自定义过滤器》dubbo3filter(过滤器)类似于javaweb中的filter和springmvc中的intercaptor,用于在请求发送前或到达前进... 目录dubbo3 filter(过滤器)简介dubbo 过滤器运行时机自定义 filter第一种 @A

Java 8 Stream filter流式过滤器详解

《Java8Streamfilter流式过滤器详解》本文介绍了Java8的StreamAPI中的filter方法,展示了如何使用lambda表达式根据条件过滤流式数据,通过实际代码示例,展示了f... 目录引言 一.Java 8 Stream 的过滤器(filter)二.Java 8 的 filter、fi

Rsnapshot怎么用? 基于Rsync的强大Linux备份工具使用指南

《Rsnapshot怎么用?基于Rsync的强大Linux备份工具使用指南》Rsnapshot不仅可以备份本地文件,还能通过SSH备份远程文件,接下来详细介绍如何安装、配置和使用Rsnaps... Rsnapshot 是一款开源的文件系统快照工具。它结合了 Rsync 和 SSH 的能力,可以帮助你在 li

Servlet中配置和使用过滤器的步骤记录

《Servlet中配置和使用过滤器的步骤记录》:本文主要介绍在Servlet中配置和使用过滤器的方法,包括创建过滤器类、配置过滤器以及在Web应用中使用过滤器等步骤,文中通过代码介绍的非常详细,需... 目录创建过滤器类配置过滤器使用过滤器总结在Servlet中配置和使用过滤器主要包括创建过滤器类、配置过滤