beginnersbook.com

  • Home
  • All Tutorials
    • Learn Servlet
    • Learn JSP
    • Learn JSTL
    • Learn C
    • Learn C++
    • Learn MongoDB
    • Learn XML
    • Learn Python
    • Learn Perl
    • Learn Kotlin
    • Learn jQuery
  • Core Java
  • OOPs
  • Collections
  • Java I/O
  • JSON
  • DBMS

Java String compareTo() Method with examples

By Chaitanya Singh | Filed Under: String handling

The Java String compareTo() method is used for comparing two strings lexicographically. Each character of both the strings is converted into a Unicode value for comparison. If both the strings are equal then this method returns 0 else it returns positive or negative value. The result is positive if the first string is lexicographically greater than the second string else the result would be negative.

Java String compareTo() method

We have following two ways to use compareTo() method:

int compareTo(String str)

Here the comparison is between string literals. For example string1.compareTo(string2) where string1 and string2 are String literals.

int compareTo(Object obj)

Here the comparison is between a string and an object. For example string1.compareTo("Just a String object") where string1 is a literal and it’s value is compared with the string specified in the method argument.

Java String compareTo() method Example

Here we have three Strings and we are comparing them with each other using compareTo() method.

public class CompareToExample {
   public static void main(String args[]) {
       String str1 = "String method tutorial";
       String str2 = "compareTo method example";
       String str3 = "String method tutorial";

       int var1 = str1.compareTo( str2 );
       System.out.println("str1 & str2 comparison: "+var1);

       int var2 = str1.compareTo( str3 );
       System.out.println("str1 & str3 comparison: "+var2);

       int var3 = str2.compareTo("compareTo method example");
       System.out.println("str2 & string argument comparison: "+var3);
   }
}

Output:

str1 & str2 comparison: -16
str1 & str3 comparison: 0
str2 & string argument comparison: 0

How to find length of a string using String compareTo() method

Here we will see an interesting example of how to use the compareTo() method to find the length of a string. If we compare a string with an empty string using the compareTo() method then the method would return the length of the non-empty string.

For example:

String str1 = "Negan";  
String str2 = ""; //empty string

//it would return the length of str1 in positive number
str1.compareTo(str2); // 5

//it would return the length of str1 in negative number
str2.compareTo(str1); //-5

In the above code snippet, the second compareTo() statement returned the length in negative number, this is because we have compared the empty string with str1 while in first compareTo() statement, we have compared str1 with empty string.

Lets see the complete example:

public class JavaExample {
    public static void main(String args[]) {
	String str1 = "Cow"; 
	//This is an empty string
	String str2 = "";
	String str3 = "Goat";
		
	System.out.println(str1.compareTo(str2));

	System.out.println(str2.compareTo(str3));
   }
}

Output:
Java String compareTo() method example

Is Java String compareTo() method case sensitive?

In this example, we will compare two strings using compareTo() method. Both the strings are same, however one of the string is in uppercase and the other string is in lowercase.

public class JavaExample {
   public static void main(String args[]) {
	//uppercase
	String str1 = "HELLO"; 
	//lowercase
	String str2 = "hello";;
		
	System.out.println(str1.compareTo(str2));
   }
}

Output:
Java String compareTo() case sensitive

As you can see that the output is not zero, which means that compareTo() method is case sensitive. However we do have a case insensitive compare method in string class, which is compareToIgnoreCase(), this method ignores the case while comparing two strings.

❮ PreviousNext ❯

Comments

  1. Sangbeet says

    August 30, 2017 at 3:51 AM

    If both the strings has space in them?
    Also if the no of characters in both the strings are not equal then what will be the output?

    Reply
    • Andy L. says

      April 19, 2018 at 7:24 AM

      I think a better description of what this method does is that it compares the FIRST character that is not equal in both strings. Anything after that will NOT be compared, whether one string has more or less characters are equal or not. The interger given in the result is based on the difference in value of the characters in the ASCII chart.
      This would apply for the space as well. If space is placed as the first distinct character in the two strings, then it would be compared depending the ASCII values of the two characters.

      For example, if you compared a space character (which has a ASCII value of 32) to a comma (which has an ASCII value of 44) using the compareTo() method, assuming that they are the first distinct chracters found in the two strings, then the result would be the difference between 32 and 44, which is -12.

      Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Java Tutorials

  • Learn Java
  • OOPs Concepts
  • Java Collections

Java String

  • Java String

Java String Methods

  • String charAt()
  • String compareTo()
  • String compareToIgnoreCase()
  • String contains()
  • String concat()
  • substring
  • String valueOf()
  • String startsWith()
  • String equals()
  • String format()
  • String endsWith()
  • String indexOf()
  • String lastIndexOf()
  • String length()
  • String replace()
  • String split()
  • String trim()
  • String intern()
  • String isEmpty()
  • String matches()
  • String regionMatches()
  • String contentEquals()
  • String toCharArray()
  • String getBytes()
  • String join()
  • String getChars()
  • String copyValueOf()

Recently Added..

  • JSON Tutorial
  • Java Regular Expressions Tutorial
  • Java Enum Tutorial
  • Java Annotations Tutorial

Copyright © 2012 – 2022 BeginnersBook . Privacy Policy . Sitemap