- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the correct way to check if String is empty in Java?
We can verify whether the given string is empty using the isEmpty() method of the String class. This method returns true only if length() is 0.
Example
import java.lang.*; public class StringDemo { public static void main(String[] args) { String str = "tutorialspoint"; // prints length of string System.out.println("length of string = " + str.length()); // checks if the string is empty or not System.out.println("is this string empty? = " + str.isEmpty()); } }
Output
length of string = 14 is this string empty? = false
- Related Articles
- What is the most elegant way to check if the string is empty in Python?
- How to check if String is empty in Java?
- What is best way to check if a list is empty in Python?
- Check if a String is empty ("") or null in Java
- Java Program to check if a string is empty or not
- Java Program to Check if a String is Empty or Null
- Check if a String is whitespace, empty ("") or null in Java
- Check if a String is not empty ("") and not null in Java
- How to check if a string is empty in Kotlin?
- Check if a HashMap is empty in Java
- Python program to check if the string is empty or not
- The correct way to trim a string in Java.
- What is the best way to check capacity in Java?
- Check if a directory is not empty in Java
- Golang program to check if a string is empty or null

Advertisements