Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7783193
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T19:46:00+00:00 2026-06-01T19:46:00+00:00

I need to use NSPredicate to match two strings, case-insensitive, diacritic insensitive, and whitespace-insensitive

  • 0

I need to use NSPredicate to match two strings, case-insensitive, diacritic insensitive, and whitespace-insensitive.

The predicate would look something like this:

[NSPredicate predicateWithFormat:@"Key ==[cdw] %@", userInputKey];

The ‘w’ modifier is an invented one to express what I’d like to use.

I can’t just trim the userInputKey because the data-source “Key” values might have whitespaces in them too (they need those whitespaces, I can’t just trim them beforehand).

For example, given a userInputKey “abc” the predicate should match all of

{"abc", "a b c", " a B    C   "}

and so on. Given a userInputKey“a B C” the predicate should also match all the values in the set above.

This can’t be so hard to do, can it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T19:46:00+00:00Added an answer on June 1, 2026 at 7:46 pm

    How about defining something like this:

    + (NSPredicate *)myPredicateWithKey:(NSString *)userInputKey {
        return [NSPredicate predicateWithBlock:^BOOL(NSString *evaluatedString, NSDictionary *bindings) {
            // remove all whitespace from both strings
            NSString *strippedString=[[evaluatedString componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]] componentsJoinedByString:@""];
            NSString *strippedKey=[[userInputKey componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]] componentsJoinedByString:@""];
            return [strippedString caseInsensitiveCompare:strippedKey]==NSOrderedSame;
        }];
    }
    

    Then use it like this:

    NSArray *testArray=[NSArray arrayWithObjects:@"abc", @"a bc", @"A B C", @"AB", @"a B d", @"A     bC", nil];
    NSArray *filteredArray=[testArray filteredArrayUsingPredicate:[MyClass myPredicateWithKey:@"a B C"]];               
    NSLog(@"filteredArray: %@", filteredArray);
    

    The result is:

    2012-04-10 13:32:11.978 Untitled 2[49613:707] filteredArray: (
        abc,
        "a bc",
        "A B C",
        "A     bC"
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to use something like get_or_create() but the problem is that I have
I need use match to check if a value is an array of strings
I need to parse Apache log file to look for specific suspicious patterns (like
I modify asp.net Web Site. I need use different connection strings for users. Web
I have two tables (Master, Responses) I need use the Master_Id field from the
So, I need use this event so I can navigate trought blog posts. I
Need to use own imaged markers instead built-in pins. I have several questions. 1.
i need to use the animate property for a less than usual activity. i
I need to use scp update some directory at another server. It is similar
I need to use some classes inside the app_code folder of a website project

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.