c# 字符串删除指定字符串
时间: 2023-08-22 21:05:12 浏览: 106
可以使用 C# 中的 Replace 方法来删除指定字符串,例如:
```csharp
string str = "hello world";
string toRemove = "world";
string result = str.Replace(toRemove, "");
```
这样就可以将字符串中的 "world" 删除,得到结果 "hello"。如果要删除多个指定字符串,可以依次调用 Replace 方法。
阅读全文