ruby 2.7.0についての記事です
- include? 文字列中に特定の文字列が含まれていれば真を返す
公式ドキュメント(stringクラスinclude?)
#公式ドキュメントより
"hello".include? "lo" #=> true
"hello".include? "ol" #=> false
#自分なりの活用法
arry = ["hello","string","integer"]
arry.each do |s|
if s.include? "e"
puts s
end
end
# => hello
integer
- include? 配列がvalueと == で等しい要素を持つ時に真を返す
公式ドキュメント(arryクラスinclude?)
#公式ドキュメントより
a = [ "a", "b", "c" ]
a.include?("b") #=> true
a.include?("z") #=> false