in reply to Sorting HoH on 2nd level key?
From your desired output here's something that I think will work:
sub sortBySite { my ($site_a) = keys %{$tmp{$a}{'priority'}}; my ($site_b) = keys %{$tmp{$b}{'priority'}}; return $site_a cmp $site_b; }
Also, does your data really need to be stored as a HoH? Would this simpler structure work for you?
'hostX1-1-l.example.com' => { priority => 'IS-ABC', priority_level => 3, os => 'linux', pager => 'man-duty', }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Sorting HoH on 2nd level key?
by Anonymous Monk on Jul 24, 2008 at 04:10 UTC |