我正在尝试创建一个名为longest_word的方法,该方法将一个句子作为参数,该函数将返回句子中最长的单词.
我的代码是:
def longest_word(str) words = str.split(' ') longest_str = [] return longest_str.max end
解决方法
这取决于您希望如何拆分字符串.如果您对使用单个空间感到满意,那么这可行:
def longest(source) arr = source.split(" ") arr.sort! { |a,b| b.length <=> a.length } arr[0] end
否则,使用正则表达式来捕获空格和puntuaction.