I have an array of objects in Ruby on Rails. I want to sort the array by an attribute of the object. Is it possible?
10 Answers
I recommend using sort_by instead:
objects.sort_by {|obj| obj.attribute}
Especially if attribute may be calculated.
Or a more concise approach:
objects.sort_by(&:attribute)
5 Comments
objects.sort_by(&:attribute)objects.sort_by { |obj| obj.attribute.downcase }sort! (e.g. speed, etc.)?Yes, using Array#sort! this is easy.
myarray.sort! { |a, b| a.attribute <=> b.attribute }
8 Comments
<=>? What kind of errors are you getting? etc, etc, ad nauseum. In other words, we need more detail than "but no luck for me".sort if you want to preserve the original and assign the result to a different object; otherwise, use the in-place variant, sort!. In fact, sort calls sort! internally, after copying the original object.sort! will work just fine, and always (!) do the same thing as what you’ve written.in case you need sorting by two attributes, where first one is more important then second (means taking in account second arguments only if first arguments are equal), then you may do like this
myarray.sort{ |a,b| (a.attr1 == b.attr1) ? a.attr2 <=> b.attr2 : a.attr1 <=> b.attr1 }
or in case of array of arrays
myarray.sort{ |a,b| (a[0] == b[0]) ? a[1] <=> b[1] : a[0] <=> b[0] }
Comments
You can make any class sortable by overriding the <=> method:
class Person
attr_accessor :first_name, :last_name
def initialize(first_name, last_name)
@first_name = first_name
@last_name = last_name
end
def <=>(other)
@last_name + @first_name <=> other.last_name + other.first_name
end
end
Now an array of Person objects will be sortable on last_name.
ar = [Person.new("Eric", "Cunningham"), Person.new("Homer", "Allen")]
puts ar # => [ "Eric Cunningham", "Homer Allen"] (Person objects!)
ar.sort!
puts ar # => [ "Homer Allen", "Eric Cunningham" ]
1 Comment
<=>) is what I was looking for, thanks. One suggestion, though: Instead of sorting by (abbreviating for space) last + first (with string concatenation), maybe sort by [last, first] (making an array -- and let ruby's sort work out the groupings under the covers). May not matter in most cases, but imagine the case of comparing "Stephen Mac", "Alice Mac", and "Billy MacGregor". With array-based sorting, the "Mac"s will stay together. With string-based, they get split up.Array#sort works well, as posted above:
myarray.sort! { |a, b| a.attribute <=> b.attribute }
BUT, you need to make sure that the <=> operator is implemented for that attribute. If it's a Ruby native data type, this isn't a problem. Otherwise, write you own implementation that returns -1 if a < b, 0 if they are equal, and 1 if a > b.
Comments
I would like to add also, if your attribute can be nil:
If your attribute is String:
objects_array.sort_by{ |obj| [ obj.attribute ? obj.attribute : "param_by_default".to_s ] }
If your attribute is DateTime:
objects_array.sort_by{ |obj| [ obj.attr_time ? obj.attr_time : "06:00".to_datetime ] }
"06:00" - default datetime.
1 Comment
Comments
@model_name.sort! { |a,b| a.attribute <=> b.attribute }
2 Comments
sort when you are sorting objects that can't be directly compared. If you have to access attributes or do a computation to get the value to compare use sort_by. It will be much faster.