Ruby获得句子中最长的单词

前端之家收集整理的这篇文章主要介绍了Ruby获得句子中最长的单词前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试创建一个名为longest_word的方法,该方法将一个句子作为参数,该函数将返回句子中最长的单词.

我的代码是:

def longest_word(str)
  words = str.split(' ')
  longest_str = []
  return longest_str.max
end

解决方法@H_403_8@
这取决于您希望如何拆分字符串.如果您对使用单个空间感到满意,那么这可行:
def longest(source)
  arr = source.split(" ")
  arr.sort! { |a,b| b.length <=> a.length }
  arr[0]
end

否则,使用正则表达式来捕获空格和puntuaction.

原文链接:https://www.f2er.com/ruby/271151.html

猜你在找的Ruby相关文章