Help for this page

Select Code to Download


  1. or download this
    if ($colref->[0] =~ /^#/) { next; }
    
  2. or download this
     
    my $anynonblank=0; 
    for my $item (@$colref){ 
      unless  ($item =~ /^\s+$/) { $anynonblank=1; last; } 
    } 
    unless ($anynonblank) { next; }