Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
I must be blind! or tired. or both... – hop Sep 7 '09 at 3:44

2 Answers

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

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

share|improve this answer

-componentsJoinedByString: on NSArray should do the trick.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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