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

What is the most efficient way to write the old-school:

StringBuilder sb = new StringBuilder();
if (strings.Count > 0)
{
    foreach (string s in strings)
    {
        sb.Append(s + ", ");
    }
    sb.Remove(sb.Length - 2, 2);
}
return sb.ToString();

...in Linq?

share|improve this question
3  
Well the selected answer and all the other options don't work in Linq to Entities. – Binoj Antony Jul 30 '09 at 12:40
1  
@Binoj Antony, don't make your database do string concatenation. – David B Jun 8 '10 at 15:18
@david-b why do you said not to let the db concat the strings? – AMgdy Nov 1 '10 at 16:15
3  
@Pr0fess0rX: Because it can't and because it shouldn't. I don't know about other databases but in SQL Server you can only concat (n)varcahr which limits you to (n)varchar(max). It shouldn't because business logic shouldn't be implemented in the data layer. – the_drow Apr 27 '11 at 10:36
As worded the questions is a duplicate of:stackoverflow.com/q/122670/184528 – cdiggins Sep 3 '12 at 13:52
show 1 more comment

9 Answers

up vote 144 down vote accepted

Use aggregate queries like this:

string[] words = { "one", "two", "three" };
var res = words.Aggregate((current, next) => current + ", " + next);
Console.WriteLine(res);

This outputs:

one, two, three

An aggregate is a function that takes a collection of values and returns a scalar value. Examples from T-SQL include min, max, and sum. Both VB and C# have support for aggregates. Both VB and C# support aggregates as extension methods. Using the dot-notation, one simply calls a method on an IEnumerable object.

Remember that aggregate queries are executed immediately.

http://msdn.microsoft.com/en-us/library/bb386914.aspx

Because this does not use a StringBuilder it will have horrible performance for very long sequences.

share|improve this answer
30  
Note that this doesn't use a StringBuilder, so will have horrible performance for very long sequences. – Jon Skeet Oct 20 '08 at 9:11
1  
True Jon Skeet. Added disclaimer at the end of the answer. – smink Oct 20 '08 at 13:58
10  
Note that this fails if words has no elements inside it. – chocojosh Jul 7 '09 at 14:20
16  
You can supply a StringBuilder as the seed value: words.Aggregate(new StringBuilder(), (current, next) => current.Append(", ").Append(next).ToString(); – CodeMonkeyKing May 11 '11 at 1:43
2  
Back again :) I left out a right paren: words.Aggregate(new StringBuilder(), (current, next) => current.Append(", ").Append(next)).ToString() – CodeMonkeyKing Sep 19 '11 at 17:36
show 2 more comments
return string.Join(", ", strings.ToArray());

In .Net 4, there's a new overload for string.Join that accepts IEnumerable<string>. The code would then look like:

return string.Join(", ", strings);
share|improve this answer
1  
OK, so the solution doesn't use Linq, but it seems to work pretty well to me – Mat Roberts Dec 22 '08 at 10:59
14  
ToArray is linq :) – David B Dec 22 '08 at 14:31

Real example from my code:

return selected.Select(query => query.Name).Aggregate((a, b) => a + ", " + b);

A query is an object that has a Name property which is a string, and I want the names of all the queries on the selected list, separated by commas.

share|improve this answer
1  
Thanks, this helped me out by showing a different angle so I've upvoted it. – tags2k Oct 20 '08 at 9:02
Given the comments about performance, I should add that the example is from code that runs once when a dialog closes, and the list is unlikely to ever have more than about ten strings on it! – Daniel Earwicker Oct 22 '08 at 15:53
Any clue how to do this same task in Linq to Entities? – Binoj Antony Jul 30 '09 at 12:40
Excellent example. Thank you for putting this into a real world scenario. I had the same exact situation, with a property of an object that needed concating. – Jessy Houle Oct 20 '09 at 23:18
Upvoted for helping me figure out that first part of selecting the string property of my List<T> – Nikki9696 Apr 20 '11 at 15:58

You can use StringBuilder in Aggregate:

  List<string> strings = new List<string>() { "one", "two", "three" };

  StringBuilder sb = strings
    .Select(s => s)
    .Aggregate(new StringBuilder(), (ag, n) => ag.Append(n).Append(", "));

  if (sb.Length > 0) { sb.Remove(sb.Length - 2, 2); }

  Console.WriteLine(sb.ToString());

(The Select is in there just to show you can do more LINQ stuff.)

share|improve this answer
1  
+1 nice. However, IMO it's better to avoid adding the extra "," than to erase it afterward. Something like new[] {"one", "two", "three"}.Aggregate(new StringBuilder(), (sb, s) =>{if (sb.Length > 0) sb.Append(", ");sb.Append(s);return sb;}).ToString(); – dss539 May 19 '10 at 20:54
3  
You would save precious clock cycles by not checking the if (length > 0) in the linq and by taking it out. – Binoj Antony Jun 9 '10 at 5:00

quick performance data for the stingbuilder vs Select case over 3000 elements:

unit test Duration (seconds) LINQ_SELECT 00:00:01.8012535
LINQ_StringBuilder 00:00:00.0036644

    [TestMethod()]
    public void LINQ_StringBuilder()
    {
        IList<int> ints = new List<int>();
        for (int i = 0; i < 3000;i++ )
        {
            ints.Add(i);
        }
        StringBuilder idString = new StringBuilder();
        foreach (int id in ints)
        {
            idString.Append(id + ", ");
        }
    }
    [TestMethod()]
    public void LINQ_SELECT()
    {
        IList<int> ints = new List<int>();
        for (int i = 0; i < 3000; i++)
        {
            ints.Add(i);
        }
        string ids = ints.Select(query => query.ToString()).Aggregate((a, b) => a + ", " + b);
    }
share|improve this answer
Helpful in deciding to go the non LINQ route for this – crabCRUSHERclamCOLLECTOR May 12 at 17:46

There are various alternative answers at this previous question - which admittedly was targeting an integer array as the source, but received generalised answers.

share|improve this answer

Lots of choices here. You can use LINQ and a StringBuilder so you get the performance too like so:

StringBuilder builder = new StringBuilder();
List<string> MyList = new List<string>() {"one","two","three"};

MyList.ForEach(w => builder.Append(builder.Length > 0 ? ", " + w : w));
return builder.ToString();
share|improve this answer
It would be faster to not check the builder.Length > 0 in the ForEach and by removing the first comma after the ForEach – Binoj Antony Jun 9 '10 at 5:02

Here it is using pure LINQ as a single expression:

static string StringJoin(string sep, IEnumerable<string> strings) {
  return strings
    .Skip(1)
    .Aggregate(
       new StringBuilder().Append(strings.FirstOrDefault() ?? ""), 
       (sb, x) => sb.Append(sep).Append(x));
}

And its pretty damn fast!

share|improve this answer

I'm going to cheat a little and throw out a new answer to this that seems to sum up the best of everything on here instead of sticking it inside of a comment.

So you can one line this:

List<string> strings = new List<string>() { "one", "two", "three" };

string concat = strings        
    .Aggregate(new StringBuilder("\a"), 
                    (current, next) => current.Append(", ").Append(next))
    .ToString()
    .Replace("\a, ",string.Empty); 

Edit: You'll either want to check for an empty enumerable first or add an .Replace("\a",string.Empty); to the end of the expression. Guess I might have been trying to get a little too smart.

The answer from @a.friend might be slightly more performant, I'm not sure what Replace does under the hood compared to Remove. The only other caveat if some reason you wanted to concat strings that ended in \a's you would lose your separators... I find that unlikely. If that is the case you do have other fancy characters to choose from.

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.