如何在不区分大小写模式下使用 HashSet.Contains() 方法?

发布于 2024-08-29 06:04:50 字数 74 浏览 4 评论 0原文

如何在不区分大小写模式下使用 HashSet.Contains() 方法?

How to use HashSet<string>.Contains() method in case -insensitive mode?

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

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

发布评论

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

评论(4

围归者 2024-09-05 06:04:50

您可以使用自定义比较器创建 HashSet

HashSet<string> hs = new HashSet<string>(StringComparer.OrdinalIgnoreCase);

hs.Add("Hello");

Console.WriteLine(hs.Contains("HeLLo"));

You can create the HashSet with a custom comparer:

HashSet<string> hs = new HashSet<string>(StringComparer.OrdinalIgnoreCase);

hs.Add("Hello");

Console.WriteLine(hs.Contains("HeLLo"));
小红帽 2024-09-05 06:04:50

您需要使用正确的 IEqualityComparer 创建它:

HashSet<string> hashset = new HashSet<string>(StringComparer.InvariantCultureIgnoreCase);

You need to create it with the right IEqualityComparer:

HashSet<string> hashset = new HashSet<string>(StringComparer.InvariantCultureIgnoreCase);
心奴独伤 2024-09-05 06:04:50

正如其他答案所证明的那样,这里没有必要,但在不使用字符串的其他情况下,您可以选择实现 IEqualityComparer,然后可以使用 .包含重载。这是一个使用字符串的示例(同样,其他答案表明已经有一个可以使用的字符串比较器来满足您的需求)。许多围绕 IEnumerable 的方法都有接受此类比较器的重载,因此最好了解如何实现它们。

class CustomStringComparer : IEqualityComparer<string>
{
    public bool Equals(string x, string y)
    {
        return x.Equals(y, StringComparison.InvariantCultureIgnoreCase);
    }

    public int GetHashCode(string obj)
    {
        return obj.GetHashCode();
    }
}

然后使用它

bool contains = hash.Contains("foo", new CustomStringComparer());

It's not necessary here, as other answers have demonstrated, but in other cases where you are not using a string, you can choose to implement an IEqualityComparer<T> and then you can use a .Contains overload. Here is an example using a string (again, other answers have shown that there is already a string comparer you can use that meets your needs). Many methods surrounding IEnumerable<T> have overloads that accept such comparers, so it's good to learn how to implement them.

class CustomStringComparer : IEqualityComparer<string>
{
    public bool Equals(string x, string y)
    {
        return x.Equals(y, StringComparison.InvariantCultureIgnoreCase);
    }

    public int GetHashCode(string obj)
    {
        return obj.GetHashCode();
    }
}

And then use it

bool contains = hash.Contains("foo", new CustomStringComparer());
屋顶上的小猫咪 2024-09-05 06:04:50

您应该使用构造函数,它允许您指定IEqualityComparer 你想使用。

HashSet<String> hashSet = new HashSet<String>(StringComparer.InvariantCultureIgnoreCase);

StringComparer 对象提供一些常用的比较器作为静态属性。

You should use the constructor which allows you to specify the IEqualityComparer you want to use.

HashSet<String> hashSet = new HashSet<String>(StringComparer.InvariantCultureIgnoreCase);

The StringComparer object provides some often used comparer as static properties.

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