我有一个字符串,我正在使用.split('')将字符串拆分成一个单词数组。我可以使用类似的方法将字符串拆分为2个字的数组吗?
返回一个数组,其中每个元素都是一个单词:
words = string.split(' ')
我希望返回一个数组,其中每个元素都是2个单词。
答案 0 :(得分:7)
str = 'one two three four five six seven'
str.split.each_slice(2).map{|a|a.join ' '}
=> ["one two", "three four", "five six", "seven"]
这也处理了奇数个字的情况。
答案 1 :(得分:4)
你可以做到
string= 'one1! two2@ three3# four4$ five5% six6^ sev'
string.scan(/\S+ ?\S*/)
# => ["one1! two2@", "three3# four4$", "five5% six6^", "sev"]
答案 2 :(得分:3)
这样的事情应该有效:
string.scan(/\w+ \w+/)
答案 3 :(得分:2)
Ruby的scan
对此非常有用:
'a b c'.scan(/\w+(?:\s+\w+)?/)
=> ["a b", "c"]
'a b c d e f g'.scan(/\w+(?:\s+\w+)?/)
=> ["a b", "c d", "e f", "g"]
答案 4 :(得分:2)
这就是我必须做的一切:
def first_word
chat = "I love Ruby"
chat = chat.split(" ")
chat[0]
end