Help for this page

Select Code to Download


  1. or download this
        my %thisrecord = map { $columns[$_] => $fields[$_] } ( 0 .. $#fiel
    +ds );
    
  2. or download this
        @thisrecord{@columns} = @fields;
    
  3. or download this
    for my $items (sort {$b->{Estimated_Value} <=> $a->{Estimated_Value}} 
    +@data) {
        ...
    }