我有一個NSArray,其內容是字符串與格式類似於: [AZ] {+} - [0-9] {+}NSPredicates beginsWith
所以基本上一堆重複字母字符,一個分離器,然後1個或多個數字如此
我想在數組中匹配的分隔符,價值觀來篩選,但我似乎無法在我的謂詞的格式明確指定:
NSPredicate *aPredicate = [NSPredicate predicateWithFormat:@"self BEGINSWITH %@", aValue];
NSArray *filtered = [entries filteredArrayUsingPredicate:aPredicate];
如何你是否限制這種情況下的過濾?