Help for this page

Select Code to Download


  1. or download this
      my @list       = map { chomp($_); $_ } <$fh>;
      my @uc_list    = map { chomp $_; [uc $_] } <$lc_fh>; # used only onc
    +e
      my @split_list = map { chomp $_; [ split(/\|/, $_) ] } <$piped_fh>; 
    +# used only once
    
  2. or download this
      my @list       = map { chomp; $_ } <$fh>;
      my @uc_list    = map { chomp; [uc $_] } <$lc_fh>; # used only once
      my @split_list = map { chomp; [ split(/\|/, $_) ] } <$piped_fh>; # u
    +sed only once
    
  3. or download this
      my @array = map {
        $_ =~ s/^[\*\+-] (.+)/$1/;
        some_sub($_, $opt);
      } @another_array;
    
  4. or download this
    <code>
      my @array = map {
        some_sub($_, $opt);
      } @another_array;
    
  5. or download this
      my @ids = map {
        $_ =~ s/<.+?>//g;
    ...
        $_ =~ s/[^\w:.\-]//g;
        $_;
      } grep {defined($_)} @base;
    
  6. or download this
      my @ids = map {
           s/<.+?>//gr
    ...
        =~ s/ /_/gr
        =~ s/[^\w:.\-]//gr
      } grep { defined } @base;
    
  7. or download this
    sub fancy_map {
      my ($opt, $list) = @_;
    ...
        }
      } @{$list};
    }
    
  8. or download this
    sub fancy_map {
      my ($opt, $list) = @_;
    ...
          }
      } @{$list};
    }