假设我有var lines = IEnumerable<string>
, 并lines
包含各种行,其前 1..n 个字符将它们排除在进程之外。例如,以“*”、“Eg”、“Sample”等开头的行。
排除标记列表是可变的,并且仅在运行时才知道,因此
lines.Where(l => !l.StartsWith("*") && !l.StartsWith("E.g.") && ...
变得有些问题。
我怎么能做到这一点?
使用 LINQ:
List<string> exceptions = new List<string>() { "AA", "EE" };
List<string> lines = new List<string>() { "Hello", "AAHello", "BHello", "EEHello" };
var result = lines.Where(x => !exceptions.Any(e => x.StartsWith(e))).ToList();
// Returns only "Hello", "BHello"
试试这个:
List<string> lines = new List<string>(); //add some values
List<string> exclusion=new List<string>(); //add some values
var result = lines.Except(exclusion, new MyComparer());
在哪里:
public class MyComparer : IEqualityComparer<string>
{
public bool Equals(string x, string y) { return x.StartsWith(y); }
public int GetHashCode(string obj) { //some code }
}