how to check if 2 strings are equal in java code example
Example 1: 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 2: how to know if String is the same java
String1.equals(String2)
Example 3: in java how to compare two strings
class scratch{
public static void main(String[] args) {
String str1 = "Nyello";
String str2 = "Hello";
String str3 = "Hello";
System.out.println( str1.equals(str2) );
System.out.println( str2.equals(str3) );
}
}