Help for this page

Select Code to Download


  1. or download this
    my @new_array = ();
    foreach my $element (@array) {
        my @temp = unpack("A A8 A1A10 A12", $element);
        push @new_array, \@temp;
    }
    
  2. or download this
    my @sorted_array = sort { $a->[1] <=> $b->[1] ||
                                       $a->[3] <=> $b->[3] } @new_array;