Answers for "java best way to check if string is empty or null"

0

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 "java best way to check if string is empty or null"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language