Answers for "how to compare three strings if they are in alphabetical order in java"

2

java compare strings alphabetically

String a = "HYRE"; 
String b = "AGNYG";  

int compare = a.compareTo(b);  

if (compare < 0) {  
    //a is smaller
}
else if (compare > 0) {
    //a is larger 
}
else {  
    //a is equal to b
}
Posted by: Guest on December-11-2020

Code answers related to "how to compare three strings if they are in alphabetical order in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language