Answers for "best way to compare if two strings are exactly the same in java"

0

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) ); //prints false
        System.out.println( str2.equals(str3) ); //prints true
    }
}
Posted by: Guest on January-08-2020

Code answers related to "best way to compare if two strings are exactly the same in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language