vote up 0 vote down star
1
string x;
foreach(var item in collection)
{
   x += item+",";
}

can I write something like this with lambdas?

flag
1  
which language is this? – Neil Butterworth May 10 at 9:22
it is c sharp.. – decon May 10 at 9:32
1  
Dupe of many questions. – Mehrdad Afshari May 10 at 9:42
And for the simpler array cases there is String.Join( ",", stringArray ) see: msdn.microsoft.com/en-us/library/… – Kris May 10 at 12:03

5 Answers

vote up 1 vote down check
string[] text = new string[] { "asd", "123", "zxc", "456" };

var result = texts.Aggregate((total, str) => total + "," + str);

Shorter syntax, thanks to Earwicker

link|flag
Much simpler: texts.Aggregate((a, b) => a + "," + b) - no need to trim the end off afterwards. – Earwicker May 10 at 9:29
Thanks, you right. Strange, but got the ',' at the end 5 min ago... – Kamarey May 10 at 9:33
what's the easiest way to test out a command like this? do i have to create a new c# project every time – decon May 10 at 9:35
1  
@decon - I keep a C# Console Mode project called Scratch on my computer, ready for me to try things out, just keep reusing it. – Earwicker May 10 at 9:55
1  
I hate to say it, but while it might be interesting way of doing it (and is FP, etc), it isn't really a good answer to the problem... so many ineffiiencies compared to using the pre-rolled string.Join, or a bespoke Join over an IEnumerable<string> using a StringBuilder. – Marc Gravell May 10 at 10:30
show 1 more comment
vote up 18 vote down

Assuming C#, have you tried String.Join()? Or is using lambdas mandatory?

Example:

string[] myStrings = ....;
string result = String.Join(",", myStrings);

EDIT

Although the original title (and example) was about concatenating strings with a separator (to which String.Join() does the best job in my opinion), the original poster seems to ask about the broader solution: how to apply a custom format a list of strings.

My answer to that is write your own method. String.Join has a purpose, reflected by its name (joins some strings). It's high chance that your format logic has a meaning in your project, so write it, give it a proper name and use it.

For instance, if you want to output <li>text</li> for every item, make something as this:

string FormatAsListItems(string[] myStrings)
{
    StringBuilder sb = new StringBuilder();
    foreach (string myString in myStrings)
    {
         sb.Append("<li>").Append(myString).Append("</li>");
    }
}

I think the intent is clearer, and you also don't take the performance hit of concatenating strings in a loop.

link|flag
no how do you use Join? – decon May 10 at 9:32
See added example. – Dan C. May 10 at 9:37
Much tidier than wrestling with Lambdas in my opinion – codeulike May 10 at 10:18
1  
You were robbed - never mind, the 12 upvotes should help... – Marc Gravell May 10 at 10:31
1  
The original question is: can I write something like this with lambdas? This isn't closest answer. I also would use String.Join in simple strings concatenation. But adding some complex logic makes this function useless. – Kamarey May 10 at 10:36
show 5 more comments
vote up 5 vote down
string x = string.Join(",", collection);
link|flag
vote up 2 vote down

You are looking too far for the solution. The String class has a Join method for this:

string x = String.Join(",", collection);
link|flag
vote up 1 vote down

Does this answer your question?

http://stackoverflow.com/questions/21078/whats-the-best-string-concatenation-method-using-c

Note that you can do this with Aggregate, but the built-in string.Join is both easier to use and faster for long arrays.

link|flag

Your Answer

Get an OpenID
or

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