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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:08:16+00:00 2026-06-14T14:08:16+00:00

I wants to extract substring from NSString. How it is possible. Example : String

  • 0

I wants to extract substring from NSString. How it is possible.

Example : String is abcdefwww.google.comabcdef

output : http://www.google.com

In the main String, It is not predefined which url comes, It may be google.com or yahoo.com etc.

So I have to find the Start location of w in www and the the last location of m in .com.

So my question is that how I can find the start location of w in www and the location of m in .com, so i extract this part

Edited due to issue :

How we can extract http://www.mywebsite.co.uk from this string asdfwww.mywebsite.co.ukasdfajsf

Thanks

  • 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-14T14:08:17+00:00Added an answer on June 14, 2026 at 2:08 pm

    substring from string like bellow

           - (NSString *)extractString:(NSString *)fullString toLookFor:(NSString *)lookFor skipForwardX:(NSInteger)skipForward toStopBefore:(NSString *)stopBefore 
        {
    
            NSRange firstRange = [fullString rangeOfString:lookFor];
            NSRange secondRange = [[fullString substringFromIndex:firstRange.location + skipForward] rangeOfString:stopBefore];
            NSRange finalRange = NSMakeRange(firstRange.location + skipForward, secondRange.location + [stopBefore length]);
    
            return [fullString substringWithRange:finalRange];
        }
    

    use this method like below…

    NSString *strTemp = [self extractString:@"abcdefwww.google.comabcdef" toLookFor:@"www" skipForwardX:0 toStopBefore:@".com"];
    NSLog(@"\n\n Substring ==>> %@",strTemp);
    

    for more information see bellow link..

    help-needed-function-extract-string-string

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

Sidebar

Related Questions

I have a string $url = http://www.example.com/index.php?1234567 I only want the substring http://www.example.com, that
How can I extract a substring from within a string in Ruby? Example: String1
I want to extract the value between the apostrophes, for example from this string:
I want to extract the server name from a string using Substring. I am
I am trying to extract a substring from a string in Tcl. I wrote
I have string from which I have to extract substring and query on their
I want to extract a substring from a string. I have strings like this:
I want to extract a substring from a line in Perl. Let me explain
I want to extract word after first 'from' in the following string- anti-CD24 from
i am trying to extract a substring(everything before a hyphen, in this case) from

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.