删除 List中的所有内容带有特定字符串

发布于 2024-10-30 00:27:47 字数 201 浏览 1 评论 0原文

我有:

List<string> MyFiles

我需要删除此列表中包含特定字符串的所有内容,

例如,如果列表是:

alex1
alex123
alex234
alex345

并且我想删除此列表中包含字符串“1”的每个元素?

i have:

List<string> MyFiles

i need to delete everything from this list that has a specific string inside of it

for example if the list was:

alex1
alex123
alex234
alex345

and i would like to delete every element in this list that has the string "1" in it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅冕 2024-11-06 00:27:47
MyFiles.RemoveAll(s => s.Contains("1"));
MyFiles.RemoveAll(s => s.Contains("1"));
疏忽 2024-11-06 00:27:47

这对你有用吗?

C#

MyFiles.RemoveAll((string s) => s.Contains("1"))

我在 VB.NET 中编写代码:

MyFiles.RemoveAll(Function(s As String) s。包含(“1”))

Does this work for you?

C#

MyFiles.RemoveAll((string s) => s.Contains("1"))

I code in VB.NET:

MyFiles.RemoveAll(Function(s As String) s.Contains("1"))

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文