Java String .compareToIgnoreCase ( String str)

Syntax

String.compareToIgnoreCase(String str) has the following syntax.

public int compareToIgnoreCase(String str)

Example

In the following code shows how to use String.compareToIgnoreCase(String str) method.


public class Main {
  public static void main(String[] argv) {
    String str = "Java2s.com";
    String str2 = "java2s.com";
    System.out.println(str.compareToIgnoreCase(str2));
//w  w  w . ja  v  a2  s . c o m
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable