Help for this page

Select Code to Download


  1. or download this
    $foo if defined $str and length $str;
    
  2. or download this
    $foo if $str;
    
  3. or download this
    BEGIN {
        *CORE::GLOBAL::length = sub(;$) {
            defined $_[0] ? CORE::length( $_[0] ) : undef;
        };
    }
    
  4. or download this
    $foo if length $str;