如何检查Ruby中的数组中是否存在值

如何检查Ruby中的数组中是否存在值

本文介绍了如何检查Ruby中的数组中是否存在值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个值'Dog'和一个数组['Cat', 'Dog', 'Bird'].

I have a value 'Dog' and an array ['Cat', 'Dog', 'Bird'].

如何在不循环的情况下检查它是否存在于数组中?有没有一种简单的方法来检查值是否存在,仅此而已?

How do I check if it exists in the array without looping through it? Is there a simple way of checking if the value exists, nothing more?

推荐答案

您在寻找 include? :

>> ['Cat', 'Dog', 'Bird'].include? 'Dog'
=> true

这篇关于如何检查Ruby中的数组中是否存在值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 17:34