Close
jGuru Forums
Posted By: Sunil_Kumar Posted On: Wednesday, March 6, 2002 07:06 AM
How to know whether a String array is empty ?
Re: How to know whether a String array is empty?
Posted By: Christopher_Schultz Posted On: Wednesday, March 6, 2002 10:59 AM
String[] array = ...;if((null == array) || (0 == array.length)){ // String is empty!}
-chris