using System;
using System.Collections.Generic;
using System.Linq;
class C
{
public static void Main()
{
var a = new []{
"First", "Second", "Third"
};
System.Console.Write(string.Join(",", a));
}
}
// In this case we are using a list. You can also use an array etc..
List<string> items = new List<string>() { "WA01", "WA02", "WA03", "WA04", "WA01" };
字符串
(B)将IEnumerable连接成字符串:
// Now let us join them all together:
string commaSeparatedString = String.Join(", ", items);
// This is the expected result: "WA01, WA02, WA03, WA04, WA01"
6条答案
按热度按时间9lowa7mx1#
字符串
d5vmydt92#
字符串
String.Join Method (String, IEnumerable
串联构造的String类型IEnumerable集合的成员,并在每个成员之间使用指定的分隔符。
rur96b6h3#
字符串
rqmkfv5c4#
(a)设置IEnumerable:
字符串
(B)将IEnumerable连接成字符串:
型
(c)调试用途:
型
z8dt9xmd5#
字符串
0ve6wy6x6#
要将一个大的字符串数组连接成一个字符串,不要直接使用
+
,而是使用StringBuilder
逐个迭代,或者一次性使用String.Join
。