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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T02:07:39+00:00 2026-06-16T02:07:39+00:00

I have a one NSString & I want to remove some characters from it,

  • 0

I have a one NSString & I want to remove some characters from it, when the first comma is found in it.

ex. str = @"0,1,2,3"; 
output - > str = @"1,2,3";

How to do this. Can anyone help me please to sort out this issue.

  • 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-16T02:07:40+00:00Added an answer on June 16, 2026 at 2:07 am

    The generic case:

    NSString* str= @"0,1,2,3";
    NSRange range= [str rangeOfString: @","];
    if(range.location!=NSNotFound)
    {
        str= [str substringWithRange: NSMakeRange(range.location+1, str.length-range.length-1)];
        NSLog(@"%@",str);
    }
    

    It doesn’t create a crash if the string hasn’t a comma.

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

Sidebar

Related Questions

I have two comma seperated NSString 's & I want to remove the similar
I want to read some float value one by one from a custom file
In my app, i have a URL of some webpage & i want to
For one NSString, I have N pattern strings. I'd like to extract substrings around
In my 'Sectioned' UITableView I have two sections, the first one for Attributes like
I have a UITableView and I want some cells to be the standard UITableViewCells
i have created one table view in which i have provided searching & deleting
I have an array (result) which is showing output on console like this. I
I have some code which works out the time from today until a given
i have one php file for push notification service and working.. i want use

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.