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 7962835
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T05:27:28+00:00 2026-06-04T05:27:28+00:00

If I have the string Hello World, is it possible to use NSRegularExpression with

  • 0

If I have the string “Hello World”, is it possible to use NSRegularExpression with the pattern @”World” to get the position of the match, i.e. in the “Hello World” example the position/index of the match should be “6”?

in php I’d use preg_match with the “PREG_OFFSET_CAPTURE” flag to achieve this, does objective-c support 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-06-04T05:27:30+00:00Added an answer on June 4, 2026 at 5:27 am

    You can do it the Cocoa way:

    NSRegularExpression *regex = [[NSRegularExpression alloc] initWithPattern:@"world" options:0 error:NULL];
    // omitted error checking for the sake of simplicity
    NSString *str = @"Hello world!";
    [regex enumerateMatchesInString:str
        options:0
        range:NSMakeRange(0, str.length)
        usingBlock:^(NSTextCheckingResult *result, NSMatchingFlags flags, BOOL *stop)
        {
            NSLog(@"Match at [%d, %d]", result.range.location, result.range.length);
        }];
    [regex release];
    

    Or the POSIX way (this may be convenient for you, since you want only one match, and this function/method returns the match range directly):

    #include <regex.h>
    
    - (NSRange)matchString:(NSString *)string toRegex:(NSString *)regex
    {
        regex_t regex_obj;
        regmatch_t match;
        const char *regex_str;
        const char *match_str;
        int error;
    
        regex_str = [regex UTF8String];
        error = regcomp(&regex_obj, regex_str, REG_EXTENDED);
        if (error)
        {
            return NSMakeRange(NSNotFound, 0);
        }
    
        match_str = [string UTF8String];
        error = regexec(&regex_obj, match_str, 1, &match, 0);
        if (error)
        {
            return NSMakeRange(NSNotFound, 0);
        }
    
        regfree(&regex_obj);
        return NSMakeRange(match.rm_so, match.rm_eo - match.rm_so);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

string = 'Hello _1234_ world _4567_'; string.match(/(\d*)/gi); //,,,,,,,1234,,,,,,,,,,4567,, If I change regext to have
Supose I have this string: a= hello world hella warld and I want to
I have string like {param1=foo}{param2=bar}hello world! I need to extract array of tuples (paramName,
I have a string: hello good old world and i want to upper case
I have a string like so string1 : Hello World, join my game: I
I have code as below: var s : String = hello world var xml
Assuming I have the following strings: string str1 = Hello World!; string str2 =
I have a textbox where a user puts a string like this: hello world!
I have following simple program: import std.stdio; int main(string[] argv) { writeln(Hello, world!); return
If I have the string hello world , how can I modify the regex

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.