2012年4月13日

[Perl] Check null value in Perl


if ( ! defined $var  ) {
  print "not defined\n";
}
else {
  print "defined\n";
}

來源 : http://www.unix.com/shell-programming-scripting/38416-not-null-cheking-argument-perl.html

沒有留言: