一般來說這種情況還是蠻多的,比如你從檔案中讀入了乙個array1,然後想把程式中的乙個array2中符合array1中內容的元素過濾出來。
正 常傻瓜一點就是兩個for迴圈,乙個乙個進行比較,這樣效率不高,而且**也不好看。
其實乙個迴圈或者無需迴圈就可以搞定了,那就需要用搞 nspredicate這個類了~膜拜此類~
1)例子一,乙個迴圈
nsarray *arrayfilter = [nsarray arraywithobjects:@"pict", @"blackrain", @"ip", nil];
nsarray *arraycontents = [nsarray arraywithobjects:@"i am a picture.", @"i am a guy", @"i am gagaga", @"ipad", @"iphone", nil];
我想過濾arraycontents的話只要迴圈 arrayfilter就好了
int i = 0, count = [arrayfilter count];
for(i = 0; i < count; i ++)
當然以上**中arraycontent最好用mutable 的,這樣就可以直接filter了,nsarray是不可修改的。
2)例子二,無需迴圈
nsarray *arrayfilter = [nsarray arraywithobjects:@"abc1", @"abc2", nil];
nsarray *arraycontent = [nsarray arraywithobjects:@"a1", @"abc1", @"abc4", @"abc2", nil];
nspredicate *thepredicate = [nspredicate predicatewithformat:@"not (self in %@)", arrayfilter];
[arraycontent filterusingpredicate:thepredicate];
這樣arraycontent過濾出來的就是不包含 arrayfilter中的所有item了。
3)生成檔案路徑下檔案集合列表
nsfilemanager *filemanager = [nsfilemanager defaultmanager];
nsstring *defaultpath = [[nsbundle mainbundle] resourcepath];
nserror *error;
nsarray *directorycontents = [filemanager contentsofdirectoryatpath:defaultpath error:&error]
4)match的用法
1. 簡單比較
nsstring *match = @"imagexyz-999.png";
nspredicate *predicate = [nspredicate predicatewithformat:@"self == %@", match];
nsarray *results = [directorycontents filteredarrayusingpredicate:predicate];
2. match裡like的用法(類似sql中的用法)
nsstring *match = @"imagexyz*.png";
nspredicate *predicate = [nspredicate predicatewithformat:@"self like %@", match];
nsarray *results = [directorycontents filteredarrayusingpredicate:predicate];
3. 大小寫比較
[c]表示忽略大小寫,[d]表示忽略重音,可以在一起使用,如下:
nsstring *match = @"imagexyz*.png"; //其中*為萬用字元
nspredicate *predicate = [nspredicate predicatewithformat:@"self like[cd] %@", match];
nsarray *results = [directorycontents filteredarrayusingpredicate:predicate];
4.使用正則
nsstring *match = @"imagexyz-\\d\\.png"; //imagexyz-123.png
nspredicate *predicate = [nspredicate predicatewithformat:@"self matches %@", match];
nsarray *results = [directorycontents filteredarrayusingpredicate:predicate];
總結:1) 當使用聚合類的操作符時是可以不需要迴圈的
2)當使用單個比較類的操作符時可以乙個迴圈來搞定
ps,例子 一中嘗試使用[@"self contains %@", arrayfilter] 來過濾會掛調,因為contains時字串比較操作符,不是集合操作符。
NSPredicate 過濾陣列中的自定義物件
1 自定義物件 inte ceperson nsobject property nonatomic,copy nsstring name property nonatomic,strong nsnumber age end 2 arr中存放n個person物件 3 過濾name是 xiaoming ...
iOS開發 NSPredicate 謂詞過濾
一 根據模型條件過濾陣列 nsmutablearray marr nsmutablearray alloc init testmodel t1 testmodel alloc init t1.age 1 testmodel t2 testmodel alloc init t2.age 3 testm...
Cocoa過濾器NSPredicate的完全用法
從下面的各個例子中,可以體會到nspredicate的強大的能力,作為正規表示式的核心類,確實優化了很多的字串及其正則相關的操作的流程。使 簡潔,而強大!cpp view plain copy print cocoa用nspredicate描述查詢的方式,原理類似於在資料庫中進行查詢 計算謂詞 基本...