0

我正在尝试在数组中搜索字符串,但我只想在数组中的最后五个对象中搜索字符串。

我一直在摆弄我可以在 NSRange 上找到的每个参数,但无济于事。

我会发布一些示例代码,但我什至无法摆脱我需要的线路,无论是通过自省、枚举还是我错过的一些 NSRange 调用。

4

3 回答 3

2

如果您的数组元素是您搜索的字符串,您可以直接检查数组,如下所示:

if ([yourArray containsObject:yourString])
{
     int index = [yourArray indexOfObject:yourString];

     if (index>= yourArray.count-5)
     {
          // Your string matched
     }
}
于 2012-12-11T09:51:42.630 回答
1

试试这个 :-

//Take only last 5 objects
NSRange range = NSMakeRange([mutableArray1 count] - 5, 5);
NSMutableArray *mutableArray2 = [NSMutableArray arrayWithArray:
                                  [mutableArray1 subarrayWithRange:range]];
//Now apply search logic on your mutableArray2
for (int i=0;i<[mutableArray2 count];i++)
    {
        if ([[mutableArray2 objectAtIndex:i] isEqualToString:matchString])
        {
            //String matched
        }
    }

希望这对你有帮助!

于 2012-12-11T09:42:12.933 回答
1

我喜欢indexesOfObjectsWithOptions:passingTest:这个。例子:

    NSArray *array = @[@24, @32, @126, @1, @98, @16, @67, @42, @44];
    // run test block on each element of the array, starting at the end of the array
    NSIndexSet *hits = [array indexesOfObjectsWithOptions:NSEnumerationReverse passingTest:^BOOL(id obj, NSUInteger idx, BOOL *stop) {
        // if we're past the elements we're interested in
        // we can set the `stop` pointer to YES to break out of
        // the enumeration
        if (idx < [array count] - 5) {
            *stop = YES;
            return NO;
        }
        // do our test -- if the element matches, return YES
        if (40 > [obj intValue]) {
            return YES;
        }
        return NO;
    }];
    // indexes of matching elements are in `hits`
    NSLog(@"%@", hits);
于 2012-12-11T09:56:27.110 回答