Help for this page

Select Code to Download


  1. or download this
    my @strings = split "\t", $line;
    my @keep    = grep { length($_) >= 0 } @strings;
    
  2. or download this
    my @keep = grep { length($_) } split "\t", $line;
    
  3. or download this
    my @keep = grep length, split "\t", $line;