添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
近视的人字拖  ·  Android Studio ...·  2 年前    · 
孤独的火龙果  ·  [代码] ...·  2 年前    · 
霸气的花卷  ·  CreateThread 函数 ...·  2 年前    · 

Example

Compare two strings, ignoring lower case and upper case differences:

String myStr1 = "HELLO";
String myStr2 = "hello";
System.out.println(myStr1.compareToIgnoreCase(myStr2));
Try it Yourself »

The compareToIgnoreCase() method compares two strings lexicographically, ignoring lower case and upper case differences.

The comparison is based on the Unicode value of each character in the string converted to lower case.

The method returns 0 if the string is equal to the other string, ignoring case differences. A value less than 0 is returned if the string is less than the other string (less characters) and a value greater than 0 if the string is greater than the other string (more characters).

Syntax

public int compareToIgnoreCase(String string2)

Parameter Values

Parameter Description string2 A String, representing the other string to be compared

Technical Details

Returns: An int value: 0 if the string is equal to the other string, ignoring case differences.
< 0 if the string is lexicographically less than the other string
> 0 if the string is lexicographically greater than the other string (more characters) Java Version:

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

W3Schools is Powered by W3.CSS.