阅读量:2
在C#中,有以下几种字符串拼接的方式:
使用"+"运算符拼接字符串,例如:
string str1 = "Hello"; string str2 = "World"; string result = str1 + " " + str2;
使用String.Concat方法拼接字符串,例如:
string str1 = "Hello"; string str2 = "World"; string result = String.Concat(str1, " ", str2);
使用String.Format方法拼接字符串,例如:
string str1 = "Hello"; string str2 = "World"; string result = String.Format("{0} {1}", str1, str2);
使用StringBuilder类拼接字符串,适用于需要频繁修改字符串的情况,例如:
StringBuilder sb = new StringBuilder(); sb.Append("Hello"); sb.Append(" "); sb.Append("World"); string result = sb.ToString();
使用字符串插值(String Interpolation)拼接字符串,C# 6.0及更高版本支持,例如:
string str1 = "Hello"; string str2 = "World"; string result = $"{str1} {str2}";
以上是常见的字符串拼接方式,根据实际需要选择合适的方式进行字符串拼接。