NSPredicate NSManagedObject的字符串属性的长度

时间:2010-09-05 01:20:48

标签: core-data nsstring nspredicate nsmanagedobject

有人可以帮我定义一个谓词,只返回NSManagedObject的“字母”属性长度是否在一定范围内?

这是我一直在尝试的例子,我感觉这是字母。长度符号,我也尝试过kvc字母。@长度没有成功..我做错了什么?

NSManagedObjectContext *context = ...;
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Word" inManagedObjectContext:context];
[fetchRequest setEntity:entity];

NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"letters" ascending:YES];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];
[fetchRequest setSortDescriptors:sortDescriptors];

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"letters.length BETWEEN %@", [NSArray arrayWithObjects: [NSNumber numberWithInt:5], [NSNumber numberWithInt:20], nil]];
[fetchRequest setPredicate:predicate];

NSUInteger limit = 20;
[fetchRequest setFetchLimit:limit];

NSError *error = nil;
NSArray *fetchedObjects = [context executeFetchRequest:fetchRequest error:&error];

4 个答案:

答案 0 :(得分:6)

不确定此代码段的性能如何,但这是我对您的问题的回答:

NSString *attributeName = @"letters";
NSString *attributeValue = [NSString stringWithFormat:@".{%d,%d}", 5, 20];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"%K MATCHES %@", attributeName, attributeValue];
[fetchRequest setPredicate:predicate];

乔丝。

答案 1 :(得分:4)

我有一些坏消息。你不能这样做。 NSPredicate中的字符串没有长度属性(我能够找到)。

我建议您在设置letters属性时为管理对象中存储的字符串的长度添加一个属性。然后,您可以对该属性进行查询并返回所需的值。

答案 2 :(得分:3)

如果有人正在寻找一种方法来测试字符串是否具有使用NSPredicate的长度,  possible

答案 3 :(得分:0)

斯威夫特:

返回 4 到 7 个字符的字符串。

NSPredicate(format: "text MATCHES %@", ".{4,7}")