Strings in Java are objects that are supported internally by a char array. Since arrays are immutable, and strings are also a type of exceptional array that holds characters, therefore, strings are immutable as well.
The String class of Java comprises a lot of methods to execute various operations on strings such as compare(), concat(), equals(), split(), length(), replace(), compareTo(), substring(), etc. Out of these methods, we will be focusing on the Java String compareTo() method in this article.
Java String.compareTo() Method
The Java String class compareTo() method compares the given string with the current string lexicographically. It returns a positive number, a negative number, or 0. It compares strings on the basis of the Unicode value of each character in the strings.
- If the first string is lexicographically greater than the second string, it returns a positive number (difference of character value).
- If the first string is less than the second string lexicographically, it returns a negative number, and,
- If the first string is lexicographically equal to the second string, it returns 0.
Note:
- if string1 > string2, it returns positive number
- if string1 < string2, it returns negative number
- if string1 == string2, it returns 0
There are three variants of the compareTo() method which are as follows:
- using int compareTo(Object obj)
- using int compareTo(String anotherString)
- using int compareToIgnoreCase(String str)
1. int compareTo(Object obj)
This method compares this String to another Object.
Syntax:
int compareTo(Object obj)
Parameters:
obj: the Object to be compared.
Return Value:The value 0 if the argument is a string lexicographically equal to this string; a value less than 0 if the argument is a string lexicographically greater than this string; and a value greater than 0 if the argument is a string lexicographically less than this string.
Below is the implementation of the above method:
Java
public class Cmp1 {
public static void main(String args[])
{
String str1 = "geeksforgeeks" ;
String str2 = new String( "geeksforgeeks" );
String str3 = new String( "astha" );
System.out.print(
"Difference of geeksforgeeks(obj) and geeksforgeeks(str) : " );
System.out.println(str1.compareTo(str2));
System.out.print(
"Difference of astha(obj) and geeksforgeeks(str) : " );
System.out.println(str1.compareTo(str3));
}
}
|
Output
Difference of geeksforgeeks(obj) and geeksforgeeks(str) : 0
Difference of astha(obj) and geeksforgeeks(str) : 6
2. int compareTo(String anotherString)
This method compares two strings lexicographically.
Syntax:
int compareTo(String anotherString)
Parameters:
anotherString: the String to be compared.
Return Value: The value 0 if the argument is a string lexicographically equal to this string; a value less than 0 if the argument is a string lexicographically greater than this string; and a value greater than 0 if the argument is a string lexicographically less than this string.
Below is the implementation of the above method:
Java
public class Cmp2 {
public static void main(String args[])
{
String str1 = "geeksforgeeks" ;
String str2 = "geeksforgeeks" ;
String str3 = "astha" ;
System.out.print(
"Difference of geeksforgeeks(str) and geeksforgeeks(str) : " );
System.out.println(str1.compareTo(str2));
System.out.print(
"Difference of astha(str) and geeksforgeeks(str) : " );
System.out.println(str1.compareTo(str3));
}
}
|
Output
Difference of geeksforgeeks(str) and geeksforgeeks(str) : 0
Difference of astha(str) and geeksforgeeks(str) : 6
3. int compareToIgnoreCase(String str)
This method compares two strings lexicographically, ignoring case differences.
Syntax:
int compareToIgnoreCase(String str)
Parameters:
str: the String to be compared.
Return Value: This method returns a negative integer, zero, or a positive integer as the specified String is greater than, equal to, or less than this String, ignoring case considerations.
Below is the implementation of the above method:
Java
public class Cmp3 {
public static void main(String args[])
{
String str1 = "geeks" ;
String str2 = "gEEkS" ;
System.out.print(
"Difference of geeks and gEEkS (case sensitive) : " );
System.out.println(str1.compareTo(str2));
System.out.print(
"Difference of geeks and gEEkS (case insensitive) : " );
System.out.println(str1.compareToIgnoreCase(str2));
}
}
|
Output
Difference of geeks and gEEkS (case sensitive) : 32
Difference of geeks and gEEkS (case insensitive) : 0
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
23 May, 2023
Like Article
Save Article