Help for this page

Select Code to Download


  1. or download this
    $logger->log( "sorted_data = ".Dumper(@sorted_data));
    
    ...
              'count_banking' => '4 (982.00)',
              'name' => 'Parking Eye [LTD] Two',
            };
    
  2. or download this
    sorted_data = $VAR1 = {
              'count_payment' => '',
    ...
              'count_banking' => '',
              'name' => 'Parking Eye [LTD] Three',
            };
    
  3. or download this
     foreach my $row ( sort { $a->{name} <=> $b->{name} }  @sorted_data ) 
    +{
            #Move the values to second and remove the last one
      }