C#字符串插入到字符串中
时间: 2024-11-13 19:11:32 浏览: 6
C#内插字符串的简单使用
在C#中,你可以使用`+`运算符或`String.Concat()`方法将一个字符串插入到另一个字符串中。这里有两个示例:
1. 使用`+`运算符:
```csharp
string original = "Hello, ";
string toInsert = "World!";
string result = original + toInsert;
```
现在`result`就是 "Hello, World!"。
2. 使用`String.Concat()`方法:
```csharp
string original = "Hello, ";
string toInsert = "World!";
string result = String.Concat(original, toInsert);
```
同样,`result`的值也是 "Hello, World!"。
另外,如果你想要在字符串中插入变量的值,可以使用`$`符号进行模板字符串插值(如果是在.NET Core 2.0及以上版本):
```csharp
string name = "World";
string result = $"Hello, {name}!";
```
这会得到 "Hello, World!"。
阅读全文