给出以下Ruby语句:
(读取输入并将每个单词存储在数组中,删除单词之间的空格等)
input = gets.chomp inArr = [] input.strip.each (" ") { |w| inArr.push w } inArr.delete_if {|ele| ele == " "} inArr.each {|w| w.strip!}
我想知道是否有人可以建议一种方法来优化这些代码,可能是通过链接或删除一些不需要的语句,因为我觉得这可以用更少的代码完成,但因为我是Ruby的新手,我很难怎么看 :)
谢谢,
R M
gets.split
应该得到你想要的
>> gets.split this is a test => ["this", "is", "a", "test"]