How do I compare string regardless their case?
Category: Introduction, viewed: 1346 time(s).
Here is an example of comparing two string for equality without considering their case sensitivity.
package org.kodejava.example.lang;
public class EqualsIgnoreCase {
public static void main(String[] args) {
String uppercase = "ABCDEFGHI";
String mixed = "aBCdEFghI";
//
// To compare two string equality regarding it case use the
// String.equalsIgnoreCase method.
//
if (uppercase.equalsIgnoreCase(mixed)) {
System.out.println("Uppercase and Mixed equals.");
}
}
}
|