删除 List中的所有内容带有特定字符串
我有:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这对你有用吗?
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"))