Help for this page

Select Code to Download


  1. or download this
    sub empty_to_undef {
       return defined($_[0]) && !length($_[0]) ? undef : $_[0];
    }
    
  2. or download this
    sub empty_to_undef {
       no warnings 'uninitialized'; 
       return length($_[0]) ? $_[0] : undef;
    }