vote up 0 vote down star
3

NSString *myString = @"A B C D E F G";

I want to remove the spaces, and get a string out like "ABCDEFG".

Please help me...

Thanks and regards

flag

0% accept rate

2 Answers

vote up 10 vote down

You could use:

NSString *stringWithoutSpaces = [myString stringByReplacingOccurencesOfString:@" " withString:@""];
link|flag
Please can you format code snippets in a monospaced font for legibility. At present distinguishing the first string is a little tricky – Mike Abdullah May 30 at 9:30
vote up 3 vote down

If you want to support more than one space at a time, or support any whitespace, you can do this:

NSString * noSpaces = [[myString componentsSeparatedByCharactersInSet: [NSCharacterSet whitespaceCharacterSet]] componentsJoinedByString: @""];
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.