Answers for "how to compare two strings and check which is greater and smaller 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 "how to compare two strings and check which is greater and smaller in java?"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language