

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Compare two strings lexicographically in Java.
The compareTo() method of the String class. This method compares two Strings lexicographically. The comparison is based on the Unicode value of each character in the strings. The character sequence represented by this String object is compared lexicographically to the character sequence represented by the argument string. This method returns
- a negative integer if current String object lexicographically precedes the argument string.
- a positive integer if current String object lexicographically follows the argument
- true when the strings are equal.
Example
import java.lang.*; public class StringDemo { public static void main(String[] args) { String str1 = "tutorials", str2 = "point"; // comparing str1 and str2 int retval = str1.compareTo(str2); // prints the return value of the comparison if (retval < 0) { System.out.println("str1 is greater than str2"); } else if (retval == 0) { System.out.println("str1 is equal to str2"); } else { System.out.println("str1 is less than str2"); } } }
Output
str1 is less than str2
- Related Questions & Answers
- Compare the two Strings lexicographically in Java
- Compare two Strings lexicographically in Java programming
- Java Program to Compare two strings lexicographically
- Compare two strings lexicographically in C#
- Comparing two Strings lexicographically in Java
- Compare two Strings in Java
- Java Program to Compare Two Strings
- Program to Compare two strings in Java
- How to compare two strings without case sensitive in Java
- How to compare two strings in Golang?
- Java Program to Compare Strings
- How to compare strings in Java?
- How to compare two strings using regex in Python?
- How do I compare strings in Java?
- Compare Two Java int Arrays in Java
Advertisements