Java Data Type Tutorial - Java String.toLowerCase()








Syntax

String.toLowerCase() has the following syntax.

public String toLowerCase()

Example

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

public class Main {
  public static void main(String[] argv) {
    String str = "Java2s.Com";
    System.out.println(str.toLowerCase());


  }
}

The code above generates the following result.