Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my Java application i need to compare two list's element whether it is similar or not.

In short suppose i have two list declared like shown below

List<String> a = new ArrayList<String>();
    a.add("one");
    a.add("three");
    a.add("two");
Collections.sort(a);


List<String> a1 = new ArrayList<String>();
    a1.add("ONE");
    a1.add("two");
    a1.add("THREE");
Collections.sort(a);

If i write a condition for equality it fails as some of list's element is in different case like

if(a.equals(a1)){
    System.out.println("equal");
} else{
    System.out.println("not equal");
}

It will display result "Not equal"

So please tell me how i can make the list element case-insensitive in Java language only.

Thank and regard

share|improve this question
2  
equalsIgnoreCase() - download-llnw.oracle.com/javase/6/docs/api/java/lang/… – E.M. Aug 20 '10 at 7:46
6  
also, do something about your Accept Rate. 0% from 17 questions is LOW! – zengr Aug 20 '10 at 8:19
1  
The solution is not to make the elements case-insensitive (which technically would mean reimplementing String--one cannot extend it because it is final--with a wrapper class whose equals and compareTo methods are case-insensitive), but rather to make the comparison case-insensitive. – user359996 Nov 4 '10 at 20:41

6 Answers

up vote 11 down vote accepted

Why not using instead a SortedSet with a case insensitive comparator ? With the String.CASE_INSENSITIVE_ORDER comparator

Your code is reduced to

Set<String> a = new TreeSet<String>(String.CASE_INSENSITIVE_ORDER);
    a.add("one");
    a.add("three");
    a.add("two");


Set<String> a1 = new TreeSet<String>(String.CASE_INSENSITIVE_ORDER);
    a1.add("ONE");
    a1.add("two");
    a1.add("THREE");

And your equals conditions should work without any issue

EDIT modified according to comments. Thanks to all of you to correct me.

share|improve this answer
1  
(you have to use a different TreeSet constructor to use the custom comparator) – Andreas_D Aug 20 '10 at 8:07
2  
You should actually use the Comparator you defined in your sample code ;-) – Joachim Sauer Aug 20 '10 at 8:08
3  
Also see String.CASE_INSENSITIVE_ORDER static Comparator on the String class – Jon Freedman Aug 20 '10 at 8:12
Note that Set lacks the indexOf method. – sproketboy Jun 21 '12 at 0:21

You need to use

Collections.sort(a, String.CASE_INSENSITIVE_ORDER);

in order to sort ignoring case, you can use the equalsIgnoreCase method on String to compare to values

You can of course create your own CaseInsensitiveList class, we have a CaseInsensitiveSet & CaseInsensitiveMap in our codebase

share|improve this answer
1  
That's not a complete solution (neither is my post below ;-)). – Joachim Sauer Aug 20 '10 at 7:50
As Joachim says, this will not make a.equals(a1) return true. – Andrzej Doyle Aug 20 '10 at 7:52
Yes, I posted a little too soon, I've edited my original answer – Jon Freedman Aug 20 '10 at 7:55
sort only would be needed if original order does NOT matter. – Carlos Heuberger Aug 20 '10 at 8:02

You'd have to do that manually:

public boolean equalsIgnoreCase(List<String> l1, List<String> l2) {
  if (l1.size() != l2.size()) {
    return false;
  }
  Iterator<String> i1=l1.iterator();
  Iterator<String> i2=l2.iterator();
  while(i1.hasNext()) {
    if (!i1.next().equalsIgnoreCase(i2.next()) {
      return false;
    }
  }
  return true;
}
share|improve this answer
oops, stupid typo, thanks gizmo ;-) – Joachim Sauer Aug 20 '10 at 8:02

You can also wrap your String into a helper class and implement the equals & compare methods for it.

public class StringWrapper implements Comparable<StringWrapper> {
    private String value;

    StringWrapper(Strig value) {
        this.value = value;
    }

    @Override boolean equals(Object o) {
        returns String.CASE_INSENSITIVE_ORDER.equals(
            (StringWrapper) o).value
            this.value);
    }

    @Override int compareTo(StringWrapper sw) {
        returns String.CASE_INSENSITIVE_ORDER.compare(
            this.value
            sw.value);        
    }

    @Override String toString() {
        return this.value;
    }

    @Override int hashCode() {
        return this.value.toLowerCase.hashCode();
    }
}

And then :

List<StringWrapper> a = new ArrayList<StringWrapper>();
    a.add(StringWrapper("one"));
    a.add(StringWrapper("TWO"));
    a.add(StringWrapper("three"));
Collections.sort(a);
share|improve this answer
You should implement Comparable<StringWrapper>, and change the compare(Object) method compareTo(StringWrapper). You should also implement hashCode(), which might get tricky. – Joachim Sauer Aug 20 '10 at 8:06
(The StringWrapper needs to implement the Comparable interface - otherwise the Collections.sort causes a compile time error) – Andreas_D Aug 20 '10 at 8:10
this is definitely the way to go (+1) – Sean Patrick Floyd Aug 20 '10 at 8:28
Thanks for the comments : answer edited accordingly. – Raphael Jolivet Aug 20 '10 at 9:39

You will need to override the equals() method on the list so it does what you want. Have a look at the current ArrayList.equals() and adapt it so it compares with equalsIgnoreCase instead of equals().

share|improve this answer
Or you make it take a comparator as a constructor argument. But the problem is that both of these violate the contract for Collection and this could cause things to not work as expected. – Stephen C Aug 20 '10 at 9:11

How about writing a Wrapper class to the List you are using, this would avoid to have inconsistent storage of the elements.

public class CaseInsensitiveStringList extends ArrayList<String> {

    @Override
    public void add(final int index, final String element) {
        super.add(index, element.toLowerCase());
    }

    @Override
    public boolean add(final String o) {
        return super.add(o.toLowerCase());
    }

    @Override
    public boolean addAll(final Collection<? extends String> c) {
        final ArrayList<String> temp = new ArrayList<String>(c.size());
        for (final String s : c) {
            temp.add(s.toLowerCase());
        }
        return super.addAll(temp);
    }

    @Override
    public boolean addAll(final int index, final Collection<? extends String> c) {
        final ArrayList<String> temp = new ArrayList<String>(c.size());
        for (final String s : c) {
            temp.add(s.toLowerCase());
        }
        return super.addAll(index, temp);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.