Java String to uppercase conversion can be done using toUpperCase()
method.
toUpperCase()
method has two variants - toUpperCase()
and toUpperCase(Locale locale)
.toUpperCase()
function is same as calling toUpperCase(Locale.getDefault())
.toUpperCase(Locale.ROOT)
method.toUpperCase()
returns a new string, so you will have to assign that to another string. The original string remains unchanged because String is immutable.null
to toUpperCase(Locale locale)
method, then it will throw NullPointerException.Let’s see a simple example to convert a string to upper case and print it.
String str = "Hello World!";
System.out.println(str.toUpperCase()); //prints "HELLO WORLD!"
We can also use Scanner class to get user input and then convert it to uppercase and print it. Here is a complete example program to convert java string to uppercase and print it.
package com.journaldev.string;
import java.util.Scanner;
public class JavaStringToUpperCase {
public static void main(String[] args) {
String str = "hello World!";
String strUpperCase = str.toUpperCase();
System.out.println("Java String to Upper Case: " + strUpperCase);
readUserInputAndPrintInUpperCase();
}
private static void readUserInputAndPrintInUpperCase() {
Scanner sc = new Scanner(System.in);
System.out.println("Please write input String and press Enter:");
String str = sc.nextLine();
System.out.println("Input String in Upper Case = " + str.toUpperCase());
sc.close();
}
}
Below console output shows the sample execution of above program.
Java String to Upper Case: HELLO WORLD!
Please write input String and press Enter:
Welcome to JournalDev Tutorials
Input String in Upper Case = WELCOME TO JOURNALDEV TUTORIALS
That’s all for java string to uppercase conversion example. Reference: API Doc
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
May I know if the code below meets the following question : Write a Java method, smallestIndex, that takes as parameters an int array and its size,and returns the index, of the first occurrence, of the smallest element in the array. Also, write a program to test the method. package Assignment.Q068; import java.util.Scanner; public class trial068 { static Scanner input =new Scanner(System.in); /** Main method */ public static void main(String[] args) { Scanner input = new Scanner(System.in); int [] numbers = new int[10]; // Create an array of length ten // Prompt the user to enter ten numbers System.out.print("Enter ten numbers: "); for (int i = 0; i < numbers.length; i++) numbers[i] = input.nextInt(); // Display the smallest value System.out.println("The minimum number is " + numbers[indexOfSmallestElement(numbers)] + " index " + indexOfSmallestElement(numbers)); } /** Method indexOfSmallestElement returns the index of * the smallest element in an array of integers */ public static int indexOfSmallestElement(int[] array) { if (array.length <= 1) return 0; int min = array[0]; int minimumIndex = 0; for (int i = 1; i < array.length; i++) { if (array[i] < min) { min = array[i]; minimumIndex = i; } } return minimumIndex; } } package Assignment.Q068; import java.util.Scanner; public class trial068 { static Scanner input =new Scanner(System.in); /** Main method */ public static void main(String[] args) { Scanner input = new Scanner(System.in); int [] numbers = new int[10]; // Create an array of length ten // Prompt the user to enter ten numbers System.out.print("Enter ten numbers: "); for (int i = 0; i < numbers.length; i++) numbers[i] = input.nextInt(); // Display the smallest value System.out.println("The minimum number is " + numbers[indexOfSmallestElement(numbers)] + " index " + indexOfSmallestElement(numbers)); } /** Method indexOfSmallestElement returns the index of * the smallest element in an array of integers */ public static int indexOfSmallestElement(int[] array) { if (array.length <= 1) return 0; int min = array[0]; int minimumIndex = 0; for (int i = 1; i < array.length; i++) { if (array[i] < min) { min = array[i]; minimumIndex = i; } } return minimumIndex; } }
- shangkari
Write a program that ask the user to input two string. The first string convert it to Uppercase and lowercase. Then the second string use length() string method
- salandaye