Languages
[Edit]
EN

Java - check if string is empty

0 points
Created by:
LionRanger
461

In this article, we would like to show you how to check if the string is empty using string isEmpty() method in Java.

Quick solution:

String text = "";
System.out.println(text.isEmpty());  // true

 

Practical example

public class Example {

    public static void main(String[] args) {
        String text = "some text here...";
        String emptyString = "";

        System.out.println(text.isEmpty());         // false
        System.out.println(emptyString.isEmpty());  // true
    }
}

Output:

false
true
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 - check if string is empty

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