如何从Ruby数组中选择最长的字符串?

时间:2014-03-16 15:13:11

标签: ruby arrays string

然而,上面的[重复建议]是多维数组,而不是针对我在这里提出的更简单的情况。

例如,如果我有:

'one','two','three','four','five'

我想选择three,因为它是最长的字符串。我试过了:

['one','two','three','four','five'].select{|char_num| char_num.size.max} 

但是Enumerable#max没有返回正确的结果。

3 个答案:

答案 0 :(得分:53)

使用Enumerable#max_by执行以下操作:

ar = ['one','two','three','four','five']
ar.max_by(&:length) # => "three"

答案 1 :(得分:1)

arr.map(&:length).max     -

答案 2 :(得分:0)

您也可以使用:

['one','two','three','four','five'].inject { |f, s| f.length > s.length ? f : s }