Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
most elegant way to return a string from List<int>

I'm not sure the easiest way to do this. I simply want to add a ; between each value and spit it out as one string. I don't see that you can do this with ToString(). I'd have to loop through and create a stringbuilder and append & add a ";".

share|improve this question
sorry that is an List<int> not List<string> – CoffeeAddict Jun 28 '10 at 19:15
I need to convert a List<string> to a delmited string. So "123;343;222" – CoffeeAddict Jun 28 '10 at 19:17
@coffeeaddict: It's OK to edit your original question. That's better than hoping people will read all the details in the comments. – DOK Jun 28 '10 at 19:20
I think this is probably an exact duplicate of stackoverflow.com/questions/1334072/… – Mark Byers Jun 28 '10 at 19:24
1  
Except that there is now a better (.NET 4.0 only) answer. – Stephen Cleary Jun 28 '10 at 19:46

marked as duplicate by Mark Byers, Jamie Ide, Daniel Brückner, ChrisF, bmargulies Jun 29 '10 at 1:17

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 25 down vote accepted

UPDATED to use List<int> instead of List<string>

Use string.Join:

List<int> data = ..;
var result = string.Join(";", data); // (.NET 4.0 only)
var result = string.Join(";", data.Select(x => x.ToString()).ToArray()); // (.NET 3.5)
share|improve this answer
sorry I have changed the question, my mistake – CoffeeAddict Jun 28 '10 at 19:16
I've updated the answer to match. – Stephen Cleary Jun 28 '10 at 19:17
+1 for .Net 4 enumerable string.Join – Sergej Andrejev Jun 28 '10 at 22:19
interesting. I had also tried myIntList.ToString().ToArray() but must be doing something wrong – CoffeeAddict Jun 29 '10 at 1:16
string.Join(";", myList.ToArray());
share|improve this answer

Just use the join

string combinedString = String.Join(";", arrayName);
share|improve this answer
List<String> list = new List<String>() { "A", "B", "C", "D", "E" };
String joindString1 = String.Join(";", list.ToArray());
String joindString2 = list.Aggregate((s1, s2) => s1 + ";" + s2);
share|improve this answer

You can also use Enumerable.Aggregate which can give extra flexibility.

var data = new List<int> { 1,2,3 };
var sb = new StringBuilder(100);

// do some other stuff with sb

sb = data.Aggregate(sb, (b, d) => b.Append(d).Append(';'));
if( data.Count > 0 ) sb.Length--;

//do some more stuff with sb

var str = sb.ToString();
share|improve this answer

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