如何连接多个字符串(C# 指南)
串联 是将一个字符串追加到另一个字符串末尾的过程。 使用 +
运算符连接字符串。 对于字符串文本和字符串常量,串联在编译时发生;不会发生运行时串联。 对于字符串变量,串联仅在运行时发生。
注意
本文中的 C# 示例运行在 Try.NET 内联代码运行程序和演练环境中。 选择 运行 按钮,在交互式窗口中运行示例。 执行代码后,可以通过再次选择 运行 来修改代码并运行修改的代码。 修改的代码要么在交互式窗口中运行,要么如果编译失败,交互式窗口将显示所有 C# 编译器错误消息。
字符串文本
以下示例将长字符串文本拆分为较小的字符串,以提高源代码中的可读性。 以下代码将较短的字符串连接起来,以创建长字符串字面量。 这些部分在编译时串联成单个字符串。 无论涉及到多少个字符串,均不产生运行时性能开销。
// Concatenation of literals is performed at compile time, not run time.
string text = "Historically, the world of data and the world of objects " +
"have not been well integrated. Programmers work in C# or Visual Basic " +
"and also in SQL or XQuery. On the one side are concepts such as classes, " +
"objects, fields, inheritance, and .NET Framework APIs. On the other side " +
"are tables, columns, rows, nodes, and separate languages for dealing with " +
"them. Data types often require translation between the two worlds; there are " +
"different standard functions. Because the object world has no notion of query, a " +
"query can only be represented as a string without compile-time type checking or " +
"IntelliSense support in the IDE. Transferring data from SQL tables or XML trees to " +
"objects in memory is often tedious and error-prone.";
System.Console.WriteLine(text);
+
和 +=
运算符
若要连接字符串变量,可以使用 +
或 +=
运算符、字符串内插 或 String.Format、String.Concat、String.Join 或 StringBuilder.Append 方法。 +
运算符易于使用,适用于直观的代码。 即使在一个语句中使用多个 +
运算符,字符串内容也只复制一次。 以下代码示例演示如何使用 +
和 +=
运算符连接字符串:
string userName = "<Type your name here>";
string dateString = DateTime.Today.ToShortDateString();
// Use the + and += operators for one-time concatenations.
string str = "Hello " + userName + ". Today is " + dateString + ".";
System.Console.WriteLine(str);
str += " How are you today?";
System.Console.WriteLine(str);
字符串内插
在某些表达式中,使用字符串内插进行字符串串联更简单,如以下代码所示:
string userName = "<Type your name here>";
string date = DateTime.Today.ToShortDateString();
// Use string interpolation to concatenate strings.
string str = $"Hello {userName}. Today is {date}.";
System.Console.WriteLine(str);
str = $"{str} How are you today?";
System.Console.WriteLine(str);
注意
在字符串串联操作中,C# 编译器将 null 字符串视为与空字符串相同。
当用于占位符的所有表达式也是常量字符串时,可以使用字符串内插来初始化常量字符串。
String.Format
连接字符串的另一种方法是 String.Format。 从少量组件字符串生成字符串时,此方法非常有效。
StringBuilder
在其他情况下,你可能会在不知道要组合的源字符串数的循环中组合字符串,而源字符串的实际数量可能很大。 StringBuilder 类是为这些方案设计的。 以下代码使用 StringBuilder 类的 Append 方法连接字符串。
// Use StringBuilder for concatenation in tight loops.
var sb = new System.Text.StringBuilder();
for (int i = 0; i < 20; i++)
{
sb.AppendLine(i.ToString());
}
System.Console.WriteLine(sb.ToString());
有关详细信息,请阅读选择字符串串联或 StringBuilder
类的原因。
String.Concat
或 String.Join
从集合联接字符串的另一个选项是使用 String.Concat 方法。 如果分隔符应分隔源字符串,请使用 String.Join 方法。 以下代码使用这两种方法合并单词数组:
string[] words = { "The", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog." };
var unreadablePhrase = string.Concat(words);
System.Console.WriteLine(unreadablePhrase);
var readablePhrase = string.Join(" ", words);
System.Console.WriteLine(readablePhrase);
LINQ 和 Enumerable.Aggregate
最后,可以使用 LINQ 和 Enumerable.Aggregate 方法联接集合中的字符串。 此方法使用 lambda 表达式合并源字符串。 lambda 表达式负责将每个字符串添加到已存在的累积量。 以下示例合并单词数组,在数组中的每个单词之间添加一个空格:
string[] words = { "The", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog." };
var phrase = words.Aggregate((partialPhrase, word) =>$"{partialPhrase} {word}");
System.Console.WriteLine(phrase);
此选项可能会比其他连接集合的方法导致更多内存资源的分配,因为它在每次迭代时都会创建一个中间字符串。 如果优化性能至关重要,请考虑 StringBuilder
类或 String.Concat
或 String.Join
方法来连接集合,而不是 Enumerable.Aggregate
。