天天看點

NSPredicate用法總結(Cocoa架構中的NSPredicate用于查詢,原理和用法都類似于SQL中的where,作用相當于資料庫的過濾取)

簡述:Cocoa架構中的NSPredicate用于查詢,原理和用法都類似于SQL中的where,作用相當于資料庫的過濾取。

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

NSPredicate用法總結(Cocoa架構中的NSPredicate用于查詢,原理和用法都類似于SQL中的where,作用相當于資料庫的過濾取)

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進行過濾

NSPredicate用法總結(Cocoa架構中的NSPredicate用于查詢,原理和用法都類似于SQL中的where,作用相當于資料庫的過濾取)

NSArray *array = [[NSArray alloc]initWithObjects:@"beijing",@"shanghai",@"guangzou",@"wuhan", nil nil];      

NSString *string = @"ang";      

NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF CONTAINS %@",string];      

NSLog(@"%@",[array filteredArrayUsingPredicate:pred]);    

(2)判斷字元串首字母是否為字母:

NSPredicate用法總結(Cocoa架構中的NSPredicate用于查詢,原理和用法都類似于SQL中的where,作用相當于資料庫的過濾取)

NSString *regex = @"[A-Za-z]+";      

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", regex];      

if ([predicate evaluateWithObject:aString]) {      

}    

(3)字元串替換:

NSPredicate用法總結(Cocoa架構中的NSPredicate用于查詢,原理和用法都類似于SQL中的where,作用相當于資料庫的過濾取)

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);  

(4)截取字元串:

NSPredicate用法總結(Cocoa架構中的NSPredicate用于查詢,原理和用法都類似于SQL中的where,作用相當于資料庫的過濾取)

//組裝一個字元串,需要把裡面的網址解析出來      

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)判斷手機号碼,電話号碼函數 

NSPredicate用法總結(Cocoa架構中的NSPredicate用于查詢,原理和用法都類似于SQL中的where,作用相當于資料庫的過濾取)

// 正則判斷手機号碼位址格式    

- (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}$";    

        * 中國移動:China Mobile  

        * 134[0-8],135,136,137,138,139,150,151,157,158,159,182,187,188  

       NSString * CM = @"^1(34[0-8]|(3[5-9]|5[017-9]|8[278])\\d)\\d{7}$";    

        * 中國聯通:China Unicom  

        * 130,131,132,152,155,156,185,186  

       NSString * CU = @"^1(3[0-2]|5[256]|8[56])\\d{8}$";    

        * 中國電信:China Telecom  

        * 133,1349,153,180,189  

       NSString * CT = @"^1((33|53|8[09])[0-9]|349)\\d{7}$";    

        * 大陸地區固話及小靈通  

        * 區号:010,020,021,022,023,024,025,027,028,029  

        * 号碼:七位或八位  

      // 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)郵箱驗證、電話号碼驗證:

NSPredicate用法總結(Cocoa架構中的NSPredicate用于查詢,原理和用法都類似于SQL中的where,作用相當于資料庫的過濾取)

//是否是有效的正規表達式    

+(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];    

(7)NSDate進行篩選

NSPredicate用法總結(Cocoa架構中的NSPredicate用于查詢,原理和用法都類似于SQL中的where,作用相當于資料庫的過濾取)

//日期在十天之内:    

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];   

如何聯系我:【萬裡虎】www.bravetiger.cn

【QQ】3396726884 (咨詢問題100元起,幫助解決問題500元起)

【部落格】http://www.cnblogs.com/kenshinobiy/