NSPredicate 按数组中包含的第一个字母过滤

Posted

技术标签:

【中文标题】NSPredicate 按数组中包含的第一个字母过滤【英文标题】:NSPredicate filter by first letter that is contained in an array 【发布时间】:2015-12-03 21:21:20 【问题描述】:

我有一个字符串数组:

@[@"ballot", @"1-time", @"32marks", @"zoo"];

我需要一个谓词来查找所有以数字开头的字符串。所以过滤后的数组应该是:

@[@"1-time", @"32marks"]

这是我目前正在尝试的:

data = @[@"ballot", @"1-time", @"32marks", @"zoo"];
NSArray *numbers = @[@"0", @"1", @"2", @"3", @"4", @"5",@"6", @"7"];
NSPredicate *firstPredicate = [NSPredicate predicateWithFormat:@"ANY %K IN %@", numbers];
NSPredicate *secondPredicate = [NSPredicate predicateWithFormat:@"SELF BEGINSWITH"];

NSCompoundPredicate *predicate = [NSCompoundPredicate andPredicateWithSubpredicates:
                                      @[firstPredicate, secondPredicate]];

data = [data filteredArrayUsingPredicate:predicate];

它崩溃了:

-[__NSArrayI rangeOfString:]: unrecognized selector sent to instance 0x15fc99a0

我认为我不需要复合谓词,但我不知道如何将“数字”格式化为谓词字符串,以便它选择“数字”中的任何数字字符串。谢谢。

【问题讨论】:

【参考方案1】:

您可以将一个简单的正则表达式传递给您的谓词,以匹配任何以数字开头的字符串。比如:

NSArray *data = @[@"ballot", @"1-time", @"32marks", @"zoo"];

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", @"^\\d.+"];
// Or ^\\d(.+)? if you want to match single-digit numbers also

data = [data filteredArrayUsingPredicate:predicate];

NSLog(@"%@", data); // Outputs: ("1-time", 32marks)

【讨论】:

以上是关于NSPredicate 按数组中包含的第一个字母过滤的主要内容,如果未能解决你的问题,请参考以下文章

NSPredicate 在 CoreData 中按字母顺序获取记录

NSPredicate 在包含数字和字母的字符串中包含搜索

NSpredicate 结果

java判断一个字符串中包含多少个字母

在JAVA中,键盘输入的字符串中包含的字母、数字和其他字符的个数如何制作?

从数组中包含的行索引中选择矩阵的列[重复]