Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は文字列の配列を持っています:
string_array = ['memberid', 'membershiptype', 'date']
ここで、この配列に が含まれているかどうかを確認する必要があり'id'、true を返すようにします。
'id'
できることはわかっていますがstring_array.include? 'memberid'、その文字列内の部分文字列を見つける必要があります'id'。
string_array.include? 'memberid'
string_array.any? { |e| e.include? 'id' }
any?配列内のいずれかの要素が指定された述語 (つまり、 に渡されたブロックany?)に対して true である場合、true を返します。
any?