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...?
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.
|
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.
|
Use the below code it will filter the array
|
|||
|
|
|
if all element is string you can use .
|
|||
|
|
|
if i understood your question... try this
hope this helps |
||||
|
|
|
Best way to filter an array is to use predicates. If you have an array of strings, for example:
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:
if you want to filter OUT @"Bill", then you would do this:
and so on. |
|||
|
|