有没有反过来的'会员?' 方法在红宝石?

我经常发现自己在检查某个值是否属于某个集合。 据我所知,人们通常使用Enumerable#成员? 为了这。

end_index = ['.', ','].member?(word[-1]) ? -3 : -2

但是,这比Ruby中的大多数东西感觉不那么优雅。 我宁愿写这个代码

end_index = word[-1].is_in?('.', ',') ? -3 : -2

但我找不到这样的方法。 它甚至存在吗? 如果不是,有什么想法为什么?


不是红宝石,但在ActiveSupport中:

characters = ["Konata", "Kagami", "Tsukasa"]
"Konata".in?(characters) # => true

你可以很容易地沿着这条线来定义它:

class Object
  def is_in? set
    set.include? self
  end
end

然后用作

8.is_in? [0, 9, 15]   # false
8.is_in? [0, 8, 15]   # true

或定义

class Object
  def is_in? *set
    set.include? self
  end
end

并用作

8.is_in?(0, 9, 15)   # false
8.is_in?(0, 8, 15)   # true

不是你的问题的答案,但也许是你的问题的解决方案。

word是一个字符串,不是吗?

你可以用一个正则表达式来检查:

end_index = word =~ /A[.,]/  ? -3 : -2

要么

end_index = word.match(/A[.,]/)  ? -3 : -2
链接地址: http://www.djcxy.com/p/25681.html

上一篇: Is there an inverse 'member?' method in ruby?

下一篇: How would I check if a value is found in an array of values