Help for this page

Select Code to Download


  1. or download this
    chomp( my @list = <$fh> );
    
  2. or download this
    my @ids = map s/ /_/gr, 
              grep defined,
              @base;
    
  3. or download this
    for (@$list) {
        if (ref) {
    ...
            $_ = ...;
        }
    }