test if strings are equal java code example
Example 1: how to compare strings java
if (aName.equals(anotherName))
{
System.out.println(aName + " equals " + anotherName);
}
else
{
System.out.println(aName + " does not equal " +anotherName );
}
Example 2: java test if strings are equal
str1.equals(str2)
String location = "London";
String destination = "London";
if (location.equals(destination)) {
System.out.println("You have arrived!");
}
Example 3: how to know if String is the same java
String1.equals(String2)