- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to compare two strings without case sensitive in Java
The equalsIgnoreCase() method compares this string to the specified object. The result is true if and only if the argument is not null and is a String object that represents the same sequence of characters as this object.
Example
public class Sample { public static void main(String args[]) { String Str1 = new String("This is really not immutable!!"); String Str2 = Str1; String Str3 = new String("THIS IS REALLY NOT IMMUTABLE!!"); boolean retVal; retVal = Str1.equalsIgnoreCase(Str2); System.out.println("Returned Value = " + retVal ); retVal = Str1.equalsIgnoreCase( Str3 ); System.out.println("Returned Value = " + retVal ); } }
Output
Returned Value = true Returned Value = true
- Related Articles
- Golang Program to compare two strings by ignoring case
- Compare two Strings in Java
- Program to Compare two strings in Java
- Java Program to Compare Two Strings
- Compare two strings lexicographically in Java.
- Java Program to Compare two strings lexicographically
- How to compare strings in Java?
- Compare two Strings lexicographically in Java programming
- Compare the two Strings lexicographically in Java
- How to compare two strings in Golang?
- Case sensitive string comparison in Java.
- How to Initialize and Compare Strings in Java?
- How to compare two strings using regex in Python?
- Java Program to sort an array in case-sensitive order
- Java Program to sort a List in case sensitive order

Advertisements