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());
/*w ww . java 2 s . c o m*/
}
}
The code above generates the following result.