最佳答案
NET 方法 String.Join(separator, stringArray)
类似于 PHP 的内爆,但是数组中的任何 null 元素都被替换为一个空字符串,所以 that c:
Dim myArray() as String = { "a", null, "c" }
Console.WriteLine(String.Join(", ", myArray));
// Prints "a, , c"
有没有一种简单的方法将一组字符串与忽略空字符串的分隔符连接起来?
我不需要使用数组或者字符串:
("a", "b", "c") --> "a, b, c"
("a", null, "c") --> "a, c"