String.equalsIgnoreCase(String anotherString) has the following syntax.
public boolean equalsIgnoreCase(String anotherString)
In the following code shows how to use String.equalsIgnoreCase(String anotherString) method.
public class Main { public static void main(String args[]) { String s1 = "java2s.com"; String s2 = "Java2s.com"; System.out.println(s1.equalsIgnoreCase(s2)); } }
The code above generates the following result.