Answers for "how to check the string is null or empty in java"

1

check if a string is empty java

if (myString == null || myString.equals(""))
			throw new IllegalArgumentException("empty string");
Posted by: Guest on December-21-2020

Code answers related to "how to check the string is null or empty in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language