Case-INsensitive Dictionary with string key-type in C#

后端 未结 5 1930
余生分开走
余生分开走 2020-11-30 23:53

If I have a Dictionary is it possible to make methods like ContainsKey case-insensitive?

This seemed related, but I didn\

相关标签:
5条回答
  • 2020-12-01 00:16

    There are few chances where your deal with dictionary which is pulled from 3rd party or external dll. Using linq

    YourDictionary.Any(i => i.KeyName.ToLower().Contains("yourstring")))

    0 讨论(0)
  • 2020-12-01 00:28

    I just ran into the same kind of trouble where I needed a caseINsensitive dictionary in a ASP.NET Core controller.

    I wrote an extension method which does the trick. Maybe this can be helpful for others as well...

    public static IDictionary<string, TValue> ConvertToCaseInSensitive<TValue>(this IDictionary<string, TValue> dictionary)
    {
        var resultDictionary = new Dictionary<string, TValue>(StringComparer.InvariantCultureIgnoreCase);
        foreach (var (key, value) in dictionary)
        {
            resultDictionary.Add(key, value);
        }
    
        dictionary = resultDictionary;
        return dictionary;
    }
    

    To use the extension method:

    myDictionary.ConvertToCaseInSensitive();
    

    Then get a value from the dictionary with:

    myDictionary.ContainsKey("TheKeyWhichIsNotCaseSensitiveAnymore!");
    
    0 讨论(0)
  • 2020-12-01 00:31

    If you have no control in the instance creation, let say your object is desterilized from json etc, you can create a wrapper class that inherits from dictionary class.

    public class CaseInSensitiveDictionary<TValue> : Dictionary<string, TValue>
    {
        public CaseInSensitiveDictionary() : base(StringComparer.OrdinalIgnoreCase){}
    }
    
    0 讨论(0)
  • 2020-12-01 00:35

    This seemed related, but I didn't understand it properly: c# Dictionary: making the Key case-insensitive through declarations

    It is indeed related. The solution is to tell the dictionary instance not to use the standard string compare method (which is case sensitive) but rather to use a case insensitive one. This is done using the appropriate constructor:

    var dict = new Dictionary<string, YourClass>(
            StringComparer.InvariantCultureIgnoreCase);
    

    The constructor expects an IEqualityComparer which tells the dictionary how to compare keys.

    StringComparer.InvariantCultureIgnoreCase gives you an IEqualityComparer instance which compares strings in a case-insensitive manner.

    0 讨论(0)
  • 2020-12-01 00:36
    var myDic = new Dictionary<string, string>(StringComparer.InvariantCultureIgnoreCase);
    myDic.Add("HeLlo", "hi");
    
    if (myDic.ContainsKey("hello"))
        Console.WriteLine(myDic["hello"]);
    
    0 讨论(0)
提交回复
热议问题