vote up 3 vote down star

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.

flag

68% accept rate
Did you discover any other super cool LINQ ways of doing things? – Robert S. Jan 23 at 15:44

7 Answers

vote up 12 vote down check

Have you looked at the Aggregate extension method?

var sa = (new[] { "yabba", "dabba", "doo" }).Aggregate((a,b) => a + "," + b);
link|flag
1  
That's probably slower than String.Join(), and harder to read in code. Does answer the question for a "LINQ way", though :-) – Chris Wenham Sep 23 '08 at 18:12
Yeah, I didn't want to taint the answer with my opinions. :P – Robert S. Sep 23 '08 at 18:18
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 at 20:33
vote up 13 vote down

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.

link|flag
because learning linq is cool – George Mauer Sep 23 '08 at 18:43
3  
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
vote up 1 vote down

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);
}
link|flag
vote up 0 vote down

I'm not sure I follow. Join in the context of LINQ is analogous to a SQL join. In other words, a relational join of two different collections of objects (sequences) on certain critera (keys).

More here.

link|flag
He's not asking about that kind of join (a SQL join). He's asking about the simple kind, string.join(). Some languages (like php) call it implode(). – davr Sep 23 '08 at 18:12
Yup, thats what I was asking, like that username though! – George Mauer Sep 23 '08 at 18:14
vote up 0 vote down

string.Join does not work on IEnumerable only string[]

link|flag
vote up 0 vote down

string.Join does not work on IEnumerable only string[]

To get around this I use Linq's ToArray which I think call String.Join against - e.g.

String Something = String.Join(Environment.NewLine, StringCollection.ToArray()));

CENTREL Solutions - Network Documentation, Automated. http://centrel-solutions.com

link|flag
vote up 0 vote down

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 = sequence.Concatenate(", ");
link|flag

Your Answer

Get an OpenID
or

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