Help for this page

Select Code to Download


  1. or download this
    my @array = qw/
        foo
        bar
        baz
        bodkin
    /;
    
  2. or download this
    my %hash2 = ();
    foreach $_ (@array) {
        $hash2{getkey($_)} = $_ unless /^f/;
    }
    
  3. or download this
    my %hash1 = map {getkey($_) => $_ unless /^f/} @array;