LINQ中不敏感的字符串匹配在哪里

这个问题在这里已经有了答案:

  • 不区分大小写'包含(字符串)'22个答案

  • foods.Where(x => x.StartsWith("S", StringComparison.OrdinalIgnoreCase));


    如果您使用的是字符串对象的集合,则还可以使用StartsWith;

    food.StartsWith("s", StringComparison.OrdinalIgnoreCase);
    
    链接地址: http://www.djcxy.com/p/13093.html

    上一篇: insensitive string matching in LINQ Where

    下一篇: Check if a Windows ListBox contains a string c# ignorecase?