Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Iam trying to develop an app that contains an array having huge number of words...I want to create a new filtered array from it....filtering is done based on a pattern that i have managed to create using a regular expression...For example, i should be able to filter out the word "apple" with a pattern "ap_l_" from my array with words...Can anyone help me out...?

share|improve this question
2  
What do you mean by that? You need to provide a little more information. – rdelmar Aug 22 '12 at 15:30
Possible Duplicate: stackoverflow.com/questions/110332/… – j.tom.schroeder Aug 22 '12 at 15:32

closed as not a real question by max_, Josh Caswell, 0x7fffffff, j0k, KingCrunch Aug 23 '12 at 9:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

up vote 2 down vote accepted

Use the below code it will filter the array

-(NSMutableArray *)searchByContains:(NSString *)containsString inputArray:(NSMutableArray *)inputArray
{
    NSLog(@"orginal Array count=%d",[inputArray count]);
    NSString *expression=[NSString stringWithFormat:@"SELF contains '%@'",containsString];
    NSLog(@"expression=%@",expression);
    NSPredicate *predicate = [NSPredicate predicateWithFormat:expression];    
    NSMutableArray *mArrayFiltered = [[inputArray filteredArrayUsingPredicate:predicate] mutableCopy];

    return mArrayFiltered;
}
share|improve this answer

if all element is string you can use .

for(NSString *str in arrayName)
  {
      if([str isEqualToString:@"searchString"])
         {

            //wirte own code here
         }



  }
share|improve this answer

if i understood your question... try this

if([your_array containsObject: your_string]){
      do something
}

hope this helps

share|improve this answer

Best way to filter an array is to use predicates. If you have an array of strings, for example:

NSArray *stringsArray = [NSArray arrayWithObjects:@"Joe", @"Bill", @"David", @"Jeff", nil];

you can easily filter it using filteredArrayUsingPredicate:. If, for example, you wanted to filter the above array for all instances of @"Bill", you would do it like this:

NSArray *filteredArray = [stringsArray filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF == 'Bill'"]];

if you want to filter OUT @"Bill", then you would do this:

filteredArray = [stringsArray filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF != 'Bill'"]];

and so on.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.