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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T14:47:57+00:00 2026-06-18T14:47:57+00:00

I have an NSString, let’s say Hello… What is the quickest way to fill

  • 0

I have an NSString, let’s say “Hello”…
What is the quickest way to fill this string up with commas in between each character? (Including before the first character)
So the returned string would be, “,H,E,L,L,O”

I was just gong to make a for loop and have a variable that goes up 2 each time a comma is added that way it will go past the new comma and the next letter and add a comma then check if that variable divided by 2 is greater than the length of the original string… Is there a better method?

  • 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-18T14:47:58+00:00Added an answer on June 18, 2026 at 2:47 pm

    Or you can just append characters to a mutable string:

    NSString *original = @"Hello";
    NSUInteger len = original.length;
    
    NSMutableString *newStr = [NSMutableString stringWithCapacity:len * 2];
    for (int i = 0; i < len; i++) {
        [newStr appendFormat:@",%C", [original characterAtIndex:i]];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's assume I have the string NSString* myString = @Hello,; How can I remove
Let's say I have this code: NSString *inspDate = @20120515; NSDateFormatter *dateFormatter = [[NSDateFormatter
Let's say I have this interface: // .h @interface DataObject : NSObject { NSString*
Let's say that I have declared an NSString like this NSString *myString = [[NSString
Let us say I have this NSString : @Country Address Tel:number . How can
Let's say I have a statement which is several lines long: NSString *urlString =
Let's say i have created myTableViewCell class: #import MyTableViewCell.h @implementation MyTableViewCell - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString
Let's say I have two objects: Articles and Categories with a many-many relationship between
Let's say I have an NSArray called myArray of NSString s ( @a0 ,
I have a string! NSString *myString=[NSString stringWithFormat:@This is my lovely string]; What I want

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.