up vote 12 down vote favorite
3
share [g+] share [fb]

Closed as exact duplicate of this question.

I have an array/list of elements. I want to convert it to a string, separated by a custom delimitator. For example:

[1,2,3,4,5] => "1,2,3,4,5"

What's the shortest/esiest way to do this in c#?

I have always done this by cycling the list and checking if the current element is not the last one before adding the separator.

for(int i=0; i<arr.Length; ++i)
{
    str += arr[i].ToString();
    if(i<arr.Length)
        str += ",";
}

Is there a LINQ function that can help me write less code?

link|improve this question
feedback

closed as exact duplicate by Jon Skeet Dec 19 '08 at 11:19

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

2 Answers

up vote 32 down vote accepted
String.Join(",", arr.Select(p=>p.ToString()).ToArray())
link|improve this answer
+1 for being 29s faster ;-) – David Schmitt Dec 19 '08 at 11:20
wow, that was fast! Thanks! – Loris Dec 19 '08 at 11:22
Thanks so much for this! Never realized about that String.Join method, fantastic! – wdanda Nov 23 '11 at 23:08
feedback
String.Join(",", array.Select(o => o.ToString()).ToArray());
link|improve this answer
feedback

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