in reply to How to sort an array of hashes based on one of the values in the hash?

With real world data I would use:
@AoH = sort { lc($a->{'Son'}) cmp lc($b->{'Son'}) } @AoH;
  • Comment on Re: How to sort an array of hashes based on one of the values in the hash?
  • Download Code