gpt4 book ai didi

arrays - 分割数组的每一项

转载 作者:数据小太阳 更新时间:2023-10-29 08:17:10 30 4
gpt4 key购买 nike

我有一个这样的数组

array = ["My Name", "1905", "more than three words"]

我想做的是将数组的每个项目按其空间拆分,然后用每个单词创建 1 个数组,所以

["My", "Name", "1905", "more", "than", "three", "words"]

到目前为止我尝试过的是

words = []
array.each do { |a| words << a.to_s.split(" ") }

返回

[["My", "Name"], ["1905"], ["more", "than", "three", "words"]]

但是我在一个数组中有多个数组。我将如何去实现

["My", "Name", "1905", "more", "than", "three", "words"]

我错过了一些明显的东西,不是吗?

最佳答案

您需要将其展平,或者在映射时进行展平。

array.flat_map{|e| e.split(" ")}

你也可以这样做:

array.inject([]){|a, s| a + s.split(" ")}

关于arrays - 分割数组的每一项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31318362/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com