Home > Java > javaTutorial > body text

Graphical examples of equalsIgnoreCase method in java

零下一度
Release: 2017-05-23 10:53:47
Original
3260 people have browsed it

This method compares one string with another string, ignoring case during the comparison. If the parameter is not null and the two Strings are equal (ignoring case), then true is returned; otherwise false is returned.

Syntax

equalsIgnoreCase(String anotherString)
Copy after login

anotherString: anotherString is the string object specified for comparison.

Example Use the equalsIgnoreCase () function to compare whether the string strCom1 and the string strCom2 are equal.

String strCom1 = "MN";
String strCom2 = "mn";
boolean strB = strCom1.equalsIgnoreCase(strCom2);
Copy after login

Typical applications The equals method and the equalsIgnoreCase method are both very widely used methods. The difference between the two is that the equals method is strictly case-sensitive during the comparison process, while the equalsIgnoreCase method is case-sensitive during the comparison process. Case is ignored in the procedure. This example uses two strings that differ only in upper and lower case, and uses these two methods for comparison. The results are shown in Figure 1.3.

Graphical examples of equalsIgnoreCase method in java

The key code of this example is as follows:

public static void main(String[] args) {
  String str1 = "I LIKE JAVA";    //定义字符串
  String str2 = "i like java"; 
  boolean bool1 = str1.equals(str2);   //使用equals方法进行比较
  boolean bool2 = str1.equalsIgnoreCase(str2); //使用equalsIgnoreCase方法进行比较
  System.out.println("使用equals方法进行比较:"+bool1); //输出比较结果
  System.out.println("使用equalsIgnoreCase方法进行比较:"+bool2);
}
Copy after login

[Related recommendations]

1. Detailed explanation of Java The difference between equals(), equalsIgnoreCase() and ==

2. Introduction to Java equalsIgnoreCase() method examples

3. Share Java The difference between equals and equalsignorecase and usage example tutorial

The above is the detailed content of Graphical examples of equalsIgnoreCase method in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!