bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Java/Java Reference
Java•Java Reference

Java String compareToIgnoreCase() Method

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind Java String compareToIgnoreCase() Method?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___ myStr1 = "HELLO";
3Order

Put the learning moves in the order that makes the concept easiest to apply.

The compareToIgnoreCase() method compares two strings lexicographically, ignoring lower case and upper case differences.
Definition and Usage
Java String compareToIgnoreCase() Method

❮ String Methods

Example

String myStr1 = "HELLO";
String myStr2 = "hello";
System.out.println(myStr1.compareToIgnoreCase(myStr2));

Definition and Usage

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

ParameterDescription
string2A 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:1.2

Previous

Java String compareTo() Method

Next

Java String concat() Method