up vote 5 down vote favorite
2
share [g+] share [fb]

Let's say I have an array of strings:

string[] myStrings = new string[] { "First", "Second", "Third" };

I want to concatenate them so the output is:

First Second Third

I know I can concatenate them like this, but there'll be no space in between:

string output = String.Concat(myStrings.ToArray());

I can obviously do this in a loop, but I was hoping for a better way.

Is there a more succinct way to do what I want?

link|improve this question

feedback

2 Answers

up vote 24 down vote accepted

Try this:

String output = String.Join(" ", myStrings);
link|improve this answer
perfect, thanks :) – Damovisa May 12 '09 at 0:15
feedback
StringBuilder buf = new StringBuilder();
foreach(var s in myStrings)
  buf.Append(s).Append(" ");
var ss = buf.ToString().Trim();
link|improve this answer
Yep, that'll work, but I was hoping for a one-liner :) – Damovisa May 12 '09 at 0:16
One liners are overrated. :) – James Black May 12 '09 at 0:17
I'd be curious to see the IL code of this and a String.Join(). I'd like to think they are the same. – Simucal May 12 '09 at 1:14
I am pretty certain they do something similar. – James Black May 12 '09 at 3:13
Yeah, it wouldn't surprise me if they compiled to the same thing. For someone coming across the code later though, String output = String.Join(" ", myStrings); would be easier to understand at a glance. – Damovisa May 12 '09 at 7:05
feedback

Your Answer

 
or
required, but never shown

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