我正在使用Ruby 2.4。如何将数组的每个元素扫描到一个条件中,除了数组中的一个索引?我尝试了这个
arr.except(2).any? {|str| str.eql?("b")}
但是有以下错误:
NoMethodError: undefined method `except' for ["a", "b", "c"]:Array
,但显然我在网上读到的有关"除"的内容被大大夸张。
arr.reject.with_index { |_el, index| index == 2 }.any? { |str| str.eql?("b") }
说明:
arr = [0, 1, 2, 3, 4, 5]
arr.reject.with_index { |_el, index| index == 2 }
#=> [0, 1, 3, 4, 5]
缩短您在做什么:
arr.reject.with_index { |_el, index| index == 2 }.grep(/b/).any?
#=> true
遵循 @Cary的评论,另一个选择是:
arr.each_with_index.any? { |str, i| i != 2 && str.eql?("b") }