Help for this page

Select Code to Download


  1. or download this
    $hash{ $array[$_] } = $_ for (0..$#array);
    
  2. or download this
    use 5.012;
    while (my ($idx, $val) = each(@array)) {
      $hash{$val} = $idx;
    }