Java Data Type Tutorial - Java String.toUpperCase()








Syntax

String.toUpperCase() has the following syntax.

public String toUpperCase()

Example

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

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


  }
}

The code above generates the following result.