Java - Método String equalsIgnoreCase ()
Descrição
Este método compara esta String com outra String, ignorando as considerações de caso. Duas strings são consideradas iguais, ignorando maiúsculas e minúsculas, se forem do mesmo comprimento, e os caracteres correspondentes nas duas strings forem iguais, ignorando maiúsculas e minúsculas.
Sintaxe
Aqui está a sintaxe deste método -
public boolean equalsIgnoreCase(String anotherString)
Parâmetros
Aqui está o detalhe dos parâmetros -
anotherString - a String com a qual comparar esta String.
Valor de retorno
Este método retorna true se o argumento não for nulo e as Strings forem iguais, ignorando maiúsculas e minúsculas; caso contrário, false.
Exemplo
public class Test {
public static void main(String args[]) {
String Str1 = new String("This is really not immutable!!");
String Str2 = Str1;
String Str3 = new String("This is really not immutable!!");
String Str4 = new String("This IS REALLY NOT IMMUTABLE!!");
boolean retVal;
retVal = Str1.equals( Str2 );
System.out.println("Returned Value = " + retVal );
retVal = Str1.equals( Str3 );
System.out.println("Returned Value = " + retVal );
retVal = Str1.equalsIgnoreCase( Str4 );
System.out.println("Returned Value = " + retVal );
}
}
Isso produzirá o seguinte resultado -
Resultado
Returned Value = true
Returned Value = true
Returned Value = true