However above [duplicate suggestion] is for multidimensional array, not targeting the simpler case I am posing here.
For example if I have:
\'one\',\'two
Just do as below using Enumerable#max_by :
ar = ['one','two','three','four','five'] ar.max_by(&:length) # => "three"