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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T15:29:43+00:00 2026-06-05T15:29:43+00:00

I am dynamically appending and removing substring from NSString – At specific action I

  • 0

I am dynamically appending and removing substring from NSString –

At specific action I am appending using (I am using comma separator while adding a new string)-

self.selectedString = [self.selectedString length] < 1 ? newSelectedString 
                                                       : [self.selectedString stringByAppendingFormat:@",%@",newSelectedString];

Removing –
Now this comma is creating problem for me when removing string.
Currently I am using a solution for this as –

self.selectedString = [self.selectedString stringByReplacingOccurrencesOfString:newSelectedString
                                                                     withString:@""];

NSRange rangeSingleComma = [self.selectedString rangeOfString:@","];
NSRange rangeDoubleComma = [self.selectedString rangeOfString:@",,"];
if (rangeSingleComma.location == [self.selectedString length] - 1) {
    self.selectedString = [self.selectedString substringToIndex:[self.selectedString length] - 1];
}
if (rangeSingleComma.location == 0) {
    self.selectedString = [self.selectedString substringFromIndex:1];
}
if (rangeDoubleComma.location != NSNotFound) {
    self.selectedString = [self.selectedString stringByReplacingOccurrencesOfString:@",,"
                                                                         withString:@","];
 }

But This is a very dirty approach, can any one suggest a good approach for 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-05T15:29:44+00:00Added an answer on June 5, 2026 at 3:29 pm

    Do you need to store this comma separated list as a string? Instead, try maintaing an NSArray/NSMutableArray of NSString’s. That makes it easy to add or remove any item at will. When you need the comma-separated string representation of the array, just do:

     [self.selectedArray componentsJoinedByString:@","]
    

    If you’d like to still use your self.selectedString property, just put the above line of code in a getter method:

     - (NSString *) selectedString {
          return [self.selectedArray componentsJoinedByString:@","]
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am dynamically appending HTML to a webpage and I'm also using jQuery to
I'm adding list items to a page dynamically with $.get, then appending them to
I am using jQuery Mobile. Currently I am dynamically adding a custom header using
Dynamically I am creating the linear layout and adding the views to linear layout
I am dynamically adding an image to a canvas object which was working for
I am dynamically adding labels to a form and I would like to set
This code attempts to dynamically switch the class of the StateContainer div from StateOne
I'm having trouble appending a get() to a dynamically created div. I've marked with
I'm creating a dropdown box dynamically in jQuery by appending html as follows: .append(<br><SELECT
I'm trying to dynamically add a css stylesheet rule using javascript, something like example

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.