in reply to Re^2: Transferring hash keys to array... Need help sorting
in thread Transferring hash keys to array... Need help sorting
my @order = sort { $labels[$a] cmp $labels[$b] } 0 .. $#labels; @labels = @labels[@order]; @content = @content[@order]; @more_content = @more_content[@order];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Transferring hash keys to array... Need help sorting
by Laurent_R (Canon) on Apr 22, 2017 at 12:04 UTC |