IOS NSProdicateクエリ、検索


簡単に説明すると、Cocoaの枠組みの中のNSPredicateは照会のために用いられ、原理と用法はすべてSQLの中のwhereに類似しており、データベースのフィルタリングに相当する役割を果たしている。
最もよく使われる関数
+ (NSPredicate *)predicateWithFormat:(NSString *)predicateFormat, ...;
1.比較演算子>、<、=>==、<=、!=例:@「number」=99」
 
2.範囲演算子:IN、BETWEEN例:@「number BETWEEN{1、5}」      @「address IN''sharnghai'、'nanjing'」3.文字列自体:SELF  例:@「SELF=''APPLE'」4.文字列関連:BEGINS WITH、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]??r*」
 
6.正規表現:MATCHES例:NSString*regex=@'^A.+e';  //Aで始まり、eで終わる。      @「name MATCHES%@」レゲックス
 
実際の応用:NSArayをフィルタリングする
NSArray *array = [[NSArray alloc]initWithObjects:@"beijing",@"shanghai",@"guangzou",@"wuhan", nil];  
NSString *string = @"ang";  
NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF CONTAINS %@",string];  
NSLog(@"%@",[array filteredArrayUsingPredicate:pred]);
 
実際の応用:文字列の頭文字がアルファベットかどうかを判断します。
NSString *regex = @"[A-Za-z]+";  
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", regex]; if ([predicate evaluateWithObject:aString]) {  
} 
実際のアプリケーション:文字列の置換
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);
実際のアプリケーション:文字列を切り取ります。
// 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);  
    }  
      
} 
実際の応用:携帯番号、電話番号の関数を判断する
//              - (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],135,136,137,138,139,150,151,157,158,159,182,187,188
        12 */ NSString * CM = @"^1(34[0-8]|(3[5-9]|5[017-9]|8[278])\\d)\\d{7}$"; /**
        15         *     :China Unicom
        16         * 130,131,132,152,155,156,185,186
        17 */ NSString * CU = @"^1(3[0-2]|5[256]|8[56])\\d{8}$"; /**
        20         *     :China Telecom
        21         * 133,1349,153,180,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;
    }
}
実用的なアプリケーション:メールの検証、電話番号の検証
//            +(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;

}
実際の応用:NSDateをスクリーニングする
//       : 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];