Languages
[Edit]
EN

Java - convert string to lowercase

0 points
Created by:
Emrys-Li
580

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

Quick solution:

String text = "ABCD";

String textLower = text.toLowerCase();

System.out.println(textLower);  // abcd

 

Practical example

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

public class Example {

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

        // convert text to lowercase
        String textLower = text.toLowerCase();

        System.out.println(textLower);  // 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.

Java - String conversion

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