Existe-t-il une expression LINQ facile permettant de concaténer l'intégralité de mes éléments de collection List<string>
en un seul string
avec un caractère délimiteur?
Que se passe-t-il si la collection est constituée d'objets personnalisés au lieu de string
? Imaginez que je dois concaténer sur object.Name
.
En utilisant LINQ, cela devrait fonctionner.
string delimiter = ",";
List<string> items = new List<string>() { "foo", "boo", "john", "doe" };
Console.WriteLine(items.Aggregate((i, j) => i + delimiter + j));
description de la classe:
public class Foo
{
public string Boo { get; set; }
}
Usage:
class Program
{
static void Main(string[] args)
{
string delimiter = ",";
List<Foo> items = new List<Foo>() { new Foo { Boo = "ABC" }, new Foo { Boo = "DEF" },
new Foo { Boo = "GHI" }, new Foo { Boo = "JKL" } };
Console.WriteLine(items.Aggregate((i, j) => new Foo{Boo = (i.Boo + delimiter + j.Boo)}).Boo);
Console.ReadKey();
}
}
Et voici mon meilleur :)
items.Select(i => i.Boo).Aggregate((i, j) => i + delimiter + j)
Dans .NET 4.0 ou versions ultérieures:
String.Join(delimiter, list);
est suffisant.
Ceci est pour un tableau de chaînes:
string.Join(delimiter, array);
C'est pour une liste <string>:
string.Join(delimiter, list.ToArray());
Et ceci est pour une liste d'objets personnalisés:
string.Join(delimiter, list.Select(i => i.Boo).ToArray());
using System.Linq;
public class Person
{
string FirstName { get; set; }
string LastName { get; set; }
}
List<Person> persons = new List<Person>();
string listOfPersons = string.Join(",", persons.Select(p => p.FirstName));
Bonne question. J'ai utilisé
List<string> myStrings = new List<string>{ "ours", "mine", "yours"};
string joinedString = string.Join(", ", myStrings.ToArray());
Ce n'est pas LINQ, mais ça marche.
List<string> strings = new List<string>() { "ABC", "DEF", "GHI" };
string s = strings.Aggregate((a, b) => a + ',' + b);
Je pense que si vous définissez la logique dans une méthode d'extension, le code sera beaucoup plus lisible:
public static class EnumerableExtensions {
public static string Join<T>(this IEnumerable<T> self, string separator) {
return String.Join(separator, self.Select(e => e.ToString()).ToArray());
}
}
public class Person {
public string FirstName { get; set; }
public string LastName { get; set; }
public override string ToString() {
return string.Format("{0} {1}", FirstName, LastName);
}
}
// ...
List<Person> people = new List<Person>();
// ...
string fullNames = people.Join(", ");
string lastNames = people.Select(p => p.LastName).Join(", ");
Vous pouvez utiliser simplement:
List<string> items = new List<string>() { "foo", "boo", "john", "doe" };
Console.WriteLine(string.Join(",", items));
Bon codage!
J'ai fait cela en utilisant linq:
var oCSP = (from P in db.Products select new { P.ProductName });
string joinedString = string.Join(",", oCSP.Select(p => p.ProductName));