vote up 2 vote down star

Given an NSArray of NSStrings, is there a quick way to join them together into a single NSString (with a Separator)?

flag
I must be blind! or tired. or both... – hop Sep 7 at 3:44

2 Answers

vote up 9 vote down check
NSArray * stuff = /* ... */;
NSString * combinedStuff = [stuff componentsJoinedByString:@"separator"];

This is the inverse of -[NSString componentsSeparatedByString:].

link|flag
vote up 3 vote down

-componentsJoinedByString: on NSArray should do the trick.

link|flag

Your Answer

Get an OpenID
or

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