ios中NSPredicate的用法

2021-06-16 22:15:19 字數 2633 閱讀 5747

一般來說這種情況還是蠻多的,比如你從檔案中讀入了乙個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時字串比較操作符,不是集合操作符。

iOS中的謂詞NSPredicate

nspredicate的坑,正規表示式無論是否新增 或 系統會自動新增開始字元和結束字元,和我們平常使用的不太一樣,所以要寫出完整的匹配表示式。nsstring regex u4e00 u9fa5a za z nspredicate predicate nspredicate predicatewi...

iOS中NSPredicate常用的format

1 比較運算子 number 100 2 範圍運算子 in between number between address in 3 字串本身 self name contain cd ang 包含某個字串 name beginswith c sh 以某個字串開頭 name endswith d an...

iOS開發 NSPredicate 謂詞過濾

一 根據模型條件過濾陣列 nsmutablearray marr nsmutablearray alloc init testmodel t1 testmodel alloc init t1.age 1 testmodel t2 testmodel alloc init t2.age 3 testm...