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

I created one Java program to compare two strings:

String s1 = "Hello";
String s2 = "hello";

if (s1.equals(s2)) {
    System.out.println("hai");
} else {
    System.out.println("welcome");
}

It displays "welcome". I understand it is case sensitive. But My problem is that I want to compare two strings without case sensitivity I.e I expect the output to be "hai".

share|improve this question
2  
If you know it is case sensitive, you could convert both to lowercase or uppercase before comparing. – fastcodejava Feb 8 '10 at 9:05

7 Answers

  • The best would be using s1.equalsIgnoreCase(s2): (see javadoc)
  • You can also convert them both to upper/lower case and use s1.equals(s2)
share|improve this answer
9  
Just be aware that the two solutions are not necessarily identical for all locales. String#equalsIgnoreCase is not using locale specific casing rules, while String#toLowerCase and #toUpperCase do. – jarnbjo Feb 8 '10 at 9:48
@jarnbjo Can you give an example where for that difference? – towi May 21 at 8:54
Locale specific case rules are at least implemented for Turkish and German. Turkish treat I with and without dot as two different letters, creating the lower/upper case pairs iİ and ıI while other languages treat iI as a pair and do not use the letters ı and İ. In German, the lower case ß is capitalized as "SS". – jarnbjo May 21 at 12:24

use String.equalsIgnoreCase()

Use the Java API reference to find answers like these.

http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html#equalsIgnoreCase(java.lang.String)

http://java.sun.com/j2se/1.5.0/docs/api/

share|improve this answer

You can use equalsIgnoreCase

share|improve this answer

More about string can be found in String Class and String Tutorials

share|improve this answer

You have to use the compareToIgnoreCase method of the String object.

int compareValue = str1.compareToIgnoreCase(str2);

if (compareValue == 0) it means str1 equals str2.

share|improve this answer

Note that you may want to do null checks on them as well prior to doing your .equals or .equalsIgnoreCase.

A null String object can not call an equals method.

ie:

public boolean areStringsSame(String str1, String str2)
{
    if (str1 == null && str2 == null)
        return true;
    if (str1 != null && str2 == null)
        return false;
    if (str1 == null && str2 != null)
        return false;

    return str1.equalsIgnoreCase(str2);
}
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.