How to sort an array of hashes in ruby How to sort an array of hashes in ruby ruby ruby

How to sort an array of hashes in ruby


Simples:

array_of_hashes.sort_by { |hsh| hsh[:zip] }

Note:

When using sort_by you need to assign the result to a new variable: array_of_hashes = array_of_hashes.sort_by{} otherwise you can use the "bang" method to modify in place: array_of_hashes.sort_by!{}


sorted = dataarray.sort {|a,b| a[:zip] <=> b[:zip]}


Use the bang to modify in place the array:

array_of_hashes.sort_by!(&:zip)

Or re-assign it:

array_of_hashes = array_of_hashes.sort_by(&:zip)

Note that sort_by method will sort by ascending order.

If you need to sort with descending order you could do something like this:

array_of_hashes.sort_by!(&:zip).reverse!

or

array_of_hashes = array_of_hashes.sort_by(&:zip).reverse