Help for this page

Select Code to Download


  1. or download this
    my @species =('HOMSAP','MUSMUS','-CIOINT');
    
    ...
            die "$_ is not in the species table\n";
        }
    } @species;
    
  2. or download this
    @in = qw{a b c -d -e};
    @out = map { s/-//; $_ } @in;
    
  3. or download this
    @in = qw{a b c -d -e};
    map { s/-//; $_ } @out = @in;