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

I have the following string array:

var sa = new string[] {"yabba","dabba","doo"};

I can convert it to "yabba, dabba, doo" it using string.Join() but what is the super-cool LINQ way of doing it? The Join extension method seems promising but for a novice like me very confusing.

share|improve this question
Did you discover any other super cool LINQ ways of doing things? – Robert S. Jan 23 '09 at 15:44

9 Answers

up vote 60 down vote accepted

Have you looked at the Aggregate extension method?

var sa = (new[] { "yabba", "dabba", "doo" }).Aggregate((a,b) => a + "," + b);
share|improve this answer
16  
That's probably slower than String.Join(), and harder to read in code. Does answer the question for a "LINQ way", though :-) – C. Lawrence Wenham Sep 23 '08 at 18:12
2  
Yeah, I didn't want to taint the answer with my opinions. :P – Robert S. Sep 23 '08 at 18:18
1  
It's unquestionably quite a bit slower, actually. Even using Aggregate with a StringBuilder instead of concatenation is slower than String.Join. – Joel Mueller May 7 '09 at 20:33
This was the answer I was looking for - helped me understand Aggregate and the sort of things it's used for. – George Mauer Dec 1 '10 at 7:40

Why use Linq?

string[] s = {"foo", "bar", "baz"};
Console.WriteLine(String.Join(", ", s));

That works perfectly and accepts any IEnumerable<string> as far as I remember. No need Aggregate anything here which is a lot slower.

share|improve this answer
6  
because learning linq is cool – George Mauer Sep 23 '08 at 18:43
13  
Learning LINQ may be cool, and LINQ may be a cute means to accomplish the end, but using LINQ to actually get the end result would be bad, to say the least, if not outright stupid – Jason Bunting Sep 23 '08 at 20:03
9  
.NET 4.0 has an IEnumerable<string> and IEnumrable<T> overload, which will make it much easier to use – Cine Jun 2 '10 at 6:30
2  
As Cine points out, .NET 4.0 has the overload. Previous versions don't. You can still String.Join(",", s.ToArray()) in the older versions though. – Martijn Jan 24 '11 at 14:30

I always use the extension method:

public static string JoinAsString<T>(this IEnumerable<T> input, string seperator)
{
    var ar = input.Select(i => i.ToString()).ToArray();
    return string.Join(seperator, ar);
}
share|improve this answer
2  
string.Join in .net 4 can already take an IEnumerable<T> for any arbitrary T. – recursive May 16 '12 at 18:49

By 'super-cool LINQ way' you might be talking about the way that LINQ makes functional programming a lot more palatable with the use of extension methods. I mean, the syntactic sugar that allows functions to be chained in a visually linear way (one after the other) instead of nesting (one inside the other). For example:

int totalEven = Enumerable.Sum(Enumerable.Where(myInts, i => i % 2 == 0));

can be written like this:

int totalEven = myInts.Where(i => i % 2 == 0).Sum();

You can see how the second example is easier to read. You can also see how more functions can be added with less of the indentation problems or the Lispy closing parens appearing at the end of the expression.

A lot of the other answers state that the String.Join is the way to go because it is the fastest or simplest to read. But if you take my interpretation of 'super-cool LINQ way' then the answer is to use String.Join but have it wrapped in a LINQ style extension method that will allow you to chain your functions in a visually pleasing way. So if you want to write sa.Concatinate(", ") you just need to create something like this:

public static class EnumerableStringExtensions
{
   public static string Concatinate(this IEnumerable<string> strings, string seperator)
   {
      return String.Join(seperator, strings);
   }
}

This will provide code that is as performant as the direct call (at least in terms of algorithm complexity) and in some cases may make the code more readable (depending on the context) especially if other code in the block is using the chained function style.

share|improve this answer

I blogged about this a while ago, what I did seams to be exactly what you're looking for:

http://ondevelopment.blogspot.com/2009/02/string-concatenation-made-easy.html

In the blog post describe how to implement extension methods that works on IEnumerable and are named Concatenate, this will let you write things like:

var sequence = new string[] { "foo", "bar" };
string result = sequence.Concatenate();

Or more elaborate things like:

var methodNames = typeof(IFoo).GetMethods().Select(x => x.Name);
string result = methodNames.Concatenate(", ");
share|improve this answer

You can combine LINQ and string.join() quite effectively. Here I am removing an item from a string. There are better ways of doing this too but here it is:

filterset = String.Join(",",
                        filterset.Split(',')
                                 .Where(f => mycomplicatedMatch(f,paramToMatch))
                       );
share|improve this answer

I did the following quick and dirty when parsing an IIS log file using linq, it worked @ 1 million lines pretty well (15 seconds), although got an out of memory error when trying 2 millions lines.

    static void Main(string[] args)
    {

        Debug.WriteLine(DateTime.Now.ToString() + " entering main");

        // USED THIS DOS COMMAND TO GET ALL THE DAILY FILES INTO A SINGLE FILE: copy *.log target.log 
        string[] lines = File.ReadAllLines(@"C:\Log File Analysis\12-8 E5.log");

        Debug.WriteLine(lines.Count().ToString());

        string[] a = lines.Where(x => !x.StartsWith("#Software:") &&
                                      !x.StartsWith("#Version:") &&
                                      !x.StartsWith("#Date:") &&
                                      !x.StartsWith("#Fields:") &&
                                      !x.Contains("_vti_") &&
                                      !x.Contains("/c$") &&
                                      !x.Contains("/favicon.ico") &&
                                      !x.Contains("/ - 80")
                                 ).ToArray();

        Debug.WriteLine(a.Count().ToString());

        string[] b = a
                    .Select(l => l.Split(' '))
                    .Select(words => string.Join(",", words))
                    .ToArray()
                    ;

        System.IO.File.WriteAllLines(@"C:\Log File Analysis\12-8 E5.csv", b);

        Debug.WriteLine(DateTime.Now.ToString() + " leaving main");

    }

The real reason I used linq was for a Distinct() I neede previously:

string[] b = a
    .Select(l => l.Split(' '))
    .Where(l => l.Length > 11)
    .Select(words => string.Format("{0},{1}",
        words[6].ToUpper(), // virtual dir / service
        words[10]) // client ip
    ).Distinct().ToArray()
    ;
share|improve this answer

The super-cool LINQ way is:

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));
}
share|improve this answer

Since this question had some activity a couple weeks ago, I decided it was okay for me to throw out the combined Join/Linq approach I settled on after looking at the above answers and the issues addressed in the answer to a similar question (namely that Aggregate and Concatenate fail with 0 elements).

string Result = String.Join(",", split.Select(s => s.Name);

or

string Result = String.Join(",", split.Select(s => s.ToString());

Simple, easy to read and understand, works for generic elements, allows using objects or object properties, handles the case of 0-length elements, could be used with additional Linq filtering, performs well (at least in my experience), and doesn't require creation of an additional object (StringBuilder) to implement.

And of course Join takes care of the pesky final comma that sometimes sneaks into other approaches (for, foreach), which is why I was looking for a Linq-y solution in the first place.

Of course, if anyone sees any problems with this approach, I'd love to adopt any suggestions or improvements they may have.

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.