Languages
[Edit]
EN

Java - convert string to uppercase

0 points
Created by:
Inferio
328

In this article, we would like to show you how to convert string to uppercase in Java.

Quick solution:

String text = "abcd";

String textUpper = text.toUpperCase();

System.out.println(textUpper);  // ABCD

 

Practical example

In this example, we use String.toUpperCase() method to convert the text string to uppercase.

public class Example {

    public static void main(String[] args) {
        String text = "abcd";

        // convert text to uppercase
        String textUpper = text.toUpperCase();

        System.out.println(textUpper);  // ABCD
    }
}

Output:

ABCD
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Cross technology - convert string to uppercase

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join