in reply to Checking Variable for Not Null

Tony, This is what I use for detecting if a variable is null or empty.
if(!(defined $ex_date) || ($ex_date eq '')) { print "EX_DATE IS UNDEF. NEXT L: \"" . __LINE__ . "\"\n"; next; }
Joe