C# List<string> searchTags 中搜索 指定string 并移除
时间: 2024-03-17 21:43:43 浏览: 96
C# String 查找
5星 · 资源好评率100%
可以使用 List<string> 的 RemoveAll 方法来移除符合指定条件的所有元素。例如,如果要移除所有等于 "指定string" 的元素,可以使用以下代码:
```csharp
searchTags.RemoveAll(tag => tag == "指定string");
```
其中,`tag` 是 List<string> 中的每个元素,`tag == "指定string"` 是要移除的条件。这行代码会将符合条件的所有元素从 List<string> 中移除。
阅读全文