So basically I have treeMap and I want to find keys in it the thing is that searching for ABC
or Abc
or aBc
or abC
or ABc
or AbC
or aBC
it should return true in the containsKey
after using some comparator i think.
The thing is that i already tried to covert the String all into lower case and upper case but sometimes i need the key to be like aBC because i need to print the key and printing abc
and ABC
or ABc
are different things.
So do you know another way to do this?