如何在Ruby中返回数组的一部分?


125

使用Python中的列表,我可以使用以下代码返回其中的一部分:

foo = [1,2,3,4,5,6]
bar = [10,20,30,40,50,60]
half = len(foo) / 2
foobar = foo[:half] + bar[half:]

由于Ruby在数组中执行所有操作,所以我想知道是否有类似的东西。

Answers:


192

是的,Ruby具有与Python非常相似的数组切片语法。这是ri数组索引方法的文档:

--------------------------------------------------------------- Array#[]
     array[index]                -> obj      or nil
     array[start, length]        -> an_array or nil
     array[range]                -> an_array or nil
     array.slice(index)          -> obj      or nil
     array.slice(start, length)  -> an_array or nil
     array.slice(range)          -> an_array or nil
------------------------------------------------------------------------
     Element Reference---Returns the element at index, or returns a 
     subarray starting at start and continuing for length elements, or 
     returns a subarray specified by range. Negative indices count 
     backward from the end of the array (-1 is the last element). 
     Returns nil if the index (or starting index) are out of range.

        a = [ "a", "b", "c", "d", "e" ]
        a[2] +  a[0] + a[1]    #=> "cab"
        a[6]                   #=> nil
        a[1, 2]                #=> [ "b", "c" ]
        a[1..3]                #=> [ "b", "c", "d" ]
        a[4..7]                #=> [ "e" ]
        a[6..10]               #=> nil
        a[-3, 3]               #=> [ "c", "d", "e" ]
        # special cases
        a[5]                   #=> nil
        a[6, 1]                #=> nil
        a[5, 1]                #=> []
        a[5..10]               #=> []

5
为什么a [5,1]与a [6,1]不同?
dertoni 2011年


25
a[2..-1]从第三个元素到最后一个。a[2...-1]从第3个元素到倒数第二个元素。
聪明的程序员

1
@Rafeh欢呼,一直在想这个垃圾如何发挥作用,-1起到了作用
Ben Sinclair

@CleverProgrammer语法比公认的答案更接近Python。我喜欢Ruby,但是我必须说Python的语法更短,更清晰。作为奖励,可以指定以下步骤:range(10)[:5:-1]
埃里克·杜米尼尔


17

您可以为此使用slice()

>> foo = [1,2,3,4,5,6]
=> [1, 2, 3, 4, 5, 6]
>> bar = [10,20,30,40,50,60]
=> [10, 20, 30, 40, 50, 60]
>> half = foo.length / 2
=> 3
>> foobar = foo.slice(0, half) + bar.slice(half, foo.length)
=> [1, 2, 3, 40, 50, 60]

顺便说一下,据我所知,Python“列表”只是有效地实现了动态增长的数组。开头的插入是O(n),结尾的插入是摊销O(1),随机访问是O(1)。


您是要在第二个切片中使用条形数组吗?
塞缪尔

仅供参考:slice!()不会修改数组,而是“删除由索引(可选,最多为长度元素)或范围给定的元素”。per ruby-doc.org/core-2.2.3/Array.html#method-i-slice-21
Joshua Pinter

7

另一种方法是使用范围方法

foo = [1,2,3,4,5,6]
bar = [10,20,30,40,50,60]
a = foo[0...3]
b = bar[3...6]

print a + b 
=> [1, 2, 3, 40, 50 , 60]

3

Ruby 2.6无限/无限范围

(..1)
# or
(...1)

(1..)
# or
(1...)

[1,2,3,4,5,6][..3]
=> [1, 2, 3, 4]

[1,2,3,4,5,6][...3]
 => [1, 2, 3]

ROLES = %w[superadmin manager admin contact user]
ROLES[ROLES.index('admin')..]
=> ["admin", "contact", "user"]

2

我喜欢以下范围:

def first_half(list)
  list[0...(list.length / 2)]
end

def last_half(list)
  list[(list.length / 2)..list.length]
end

但是,请注意端点是否包含在您的范围内。这对于一个奇数长度的列表至关重要,在该列表中,您需要选择要打破中间位置的位置。否则,您将最终重复计算中间元素。

上面的示例将始终将中间元素放在最后一半。


(list.length / 2.0).ceil如果需要,您可以用来将中间元素始终放在前半部分。
Sorashi
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.