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

  • SEARCH
  • Home
  • 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 6643753
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:05:14+00:00 2026-05-26T00:05:14+00:00

How is it possible to perform a matching of string, just like regex ?

  • 0

How is it possible to perform a matching of string, just like regex?

For example i have an array of strings, I want to match if these string is in the format of "abc def xxx", which xxx is number like 1, 11, 12, 100, 111, etc.

How can I achieve this?

  • 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-05-26T00:05:15+00:00Added an answer on May 26, 2026 at 12:05 am

    The arrays:

    NSArray *array1 = [NSArray arrayWithObjects:@"abc def 1", @"abc def 64", @"abc def 853", @"abc def 14", nil];
    NSArray *array2 = [NSArray arrayWithObjects:@"abc def 3", @"abc def 856", @"abc def 36", @"abc def 5367", nil];
    

    The regular expression:

    NSString *regex = @"abc def [0-9]{1,3}";
    

    To check if all strings in the array matche the regex:

    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"ALL description MATCHES %@", regex];
    BOOL allStringsMatch = [predicate evaluateWithObject:array1]; 
    // OUTPUT: YES
    allStringsMatch = [predicate evaluateWithObject:array2];
    // OUTPUT: NO
    

    All objects in array1 matches the regex, but array2 contains the string @”abc def 5367″ which doesn’t match the regex.

    To get the matched strings:

    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"description MATCHES %@", regex];
    NSArray *unmatchedStrings = [array2 filteredArrayUsingPredicate:predicate];
    // OUTPUT: { @"abc def 3", @"abc def 856", @"abc def 36" }
    

    To get the unmatched strings:

    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"NOT description MATCHES %@", regex];
    NSArray *unmatchedStrings = [array2 filteredArrayUsingPredicate:predicate];
    // OUTPUT: { @"abc def 5367" }
    

    Note that here “description” in predicate is the - description method of NSString.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to perform a named-group match in Perl's regex syntax as with
Is it possible to perform date arithmetic using JPA/Hibernate? For example, I have an
Is it even possible to perform address (physical, not e-mail) validation? It seems like
Is it possible to perform a global reversed-find on NHibernate-managed objects? Specifically, I have
Is it possible to perform an action when a UITableViewCell is highlighted? For example
Is it possible to perform a patch release in maven? I would like to
Is it possible to perform a pattern match whose result conforms to a type
Is it possible to perform a HTTP Request with specific header fields (like 'referer',
Is it possible to perform multiple loops simultaneously in python. Like(syntax error, of course):
Is it possible to perform some custom processing when Windsor instantiates a type? Something

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.