Help for this page

Select Code to Download


  1. or download this
    my @sorted =
       map  { $_->[1] }
       sort { $a->[0] cmp $b->[0] }
       map  { [join('.',reverse split(/\./)),$_] } @unsorted;
    
  2. or download this
    my $noodle = join($/,
       map  { sprintf("%64s",$_->[1]) }
       sort { $a->[0] cmp $b->[0] }
       map  { [join('.',reverse split(/\./)),$_] } keys %hash
       );