我有一个UITableView,我试图将其拆分为A-Z部分,然后对其他所有内容进行#处理,我尝试使用以下方法将主数组中的数据过滤到非字母部分中:
NSArray *selectionArray = [nameArray filteredArrayUsingPredicate: [NSPredicate predicateWithFormat:@"NOT (SELF beginswith[c] %@)", @"^[A-Za-z].*"]];
不幸的是,它没有按照我的想法工作,并且一切都被放入
selectionArray
任何帮助将不胜感激,谢谢。
最佳答案
似乎“beginswith”运算符不支持正则表达式。下一个谓词为我工作:“不(自已匹配[c]'^ [A-Za-z]。*')”)。
关于ios - 使用NSPredicate过滤以非字母字符开头的条目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27159321/