Convert To Uppercase Example Java Program

Definition

A string is traditionally a sequence of characters, either as a literal constant or as some kind of variable. A string is generally understood as a data type and is often implemented as an array of bytes (or words) that stores a sequence of elements, typically characters, using some character encoding. The case of a particular string can be found using inbuilt methods. These methods checks the case of each character in the string.

Syntax

String_Variable_Name.toUppercase();

Convert To Uppercase Example Program

public class ConvertToUppercase{
	public static void main(String args[]){
	System.out.println("The input string is: ");
    String str ="She sells sea shells on the sea shore.";
	System.out.println(str);
    System.out.println("After changing to uppercase, the string is: " );
    System.out.println(str.toUpperCase() );
	}
}

Sample Output

Output is:
The input string is:
She sells sea shells on the sea shore.
After changing to uppercase, the string is:
SHE SELLS SEA SHELLS ON THE SEA SHORE.