Java String equalsIgnoreCase() method


In this program, You will learn how to implement the String equalsIgnoreCase() method in java.


if (a.equalsIgnoreCase(b)) { 
   //statement
}

Example: How to implement String equalsIgnoreCase() method in java.

import java.util.Scanner;

class Main {
    public static void main(String args[]) {

        Scanner sc = new Scanner(System.in);
        String a, b;

        System.out.print("Enter first string:");
        a = sc.nextLine();
        System.out.print("Enter second string:");
        b = sc.nextLine();

        if (a.equalsIgnoreCase(b)) {
            System.out.println("Both Strings are equal");
        } else {
            System.out.println("Both Strings are not equal");
        }

    }
}

Output:

Enter first string:XIITH
Enter second string:xiith
Both Strings are equal