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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T02:15:20+00:00 2026-06-03T02:15:20+00:00

I have a string, and I want to search words (tags) that begin with

  • 0

I have a string, and I want to search words (tags) that begin with “#” and end with “.” or “,” or ” ” I found this online, but is limited because:
– You can find a single word in the string (although there are more words)
– “RangeOfString” does not allow multiple choices

NSString *stringText = @"test #hello #world";
NSString *result = nil;

// Determine  "#"
NSRange hashRange = [stringText rangeOfString:@"#" options:NSCaseInsensitiveSearch];
if (hashRange.location != NSNotFound)
{
    // Determine " " location according to "#" location
    NSRange endHashRange;

    endHashRange.location = hashRange.length + hashRange.location;
    endHashRange.length   = [stringText length] - endHashRange.location;
    endHashRange = [stringText rangeOfString:@" " options:NSCaseInsensitiveSearch range:endHashRange];

    if (endHashRange.location != NSNotFound)
    {
        // Tags found: retrieve string between them
        hashRange.location += hashRange.length;
        hashRange.length = endHashRange.location - hashRange.location;

        result = [stringText substringWithRange:hashRange];
    }
}

you have idea how can I do?

Thank you!

  • 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-03T02:15:23+00:00Added an answer on June 3, 2026 at 2:15 am

    You can use NSRegularExpression class, like this:

    NSError *error = NULL;
    NSRegularExpression *tags = [NSRegularExpression
        regularExpressionWithPattern:@"[#]([^, .]+)([, .]|$)"
        options:NSRegularExpressionCaseInsensitive
        error:&error];
    NSArray *matches = [tags matchesInString:str options:0 range:NSMakeRange(0, str.length)];
    
    for (NSTextCheckingResult *match in matches) {
        NSLog(@"%@", [str substringWithRange:[match rangeAtIndex:1]]);
    }
    

    You may need to play with your regular expression to get it just right. The reference that I liked describes the grammar of the regex language supported by Apple’s classes.

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

Sidebar

Related Questions

I have a richtextbox that I want to search and replace only WHOLE words.
I have a long list of words that I want to search for in
I have a string s and I want to search for the substring of
I have a string of letters and I want to search it for a
I have an HTML document as a string I want to search for a
i have a long string variable and i want to search in it for
i have a text file with string abcdef I want to search for the
I have input.txt and I want to search for a string and extract a
I have a folder full of files and I want to search some string
Hy, I have a long csv and I want to search strings that contain

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.