Ruby 字符串 include?方法
是 Ruby中的一个字符串类方法,用于在给定的字符串包含给定的字符串或字符时返回真。
语法: str.include?
参数: 这里,str是给定的字符串。
返回: 如果给定的字符串包含给定的字符串或字符,则为真,否则为假。
例子 1 :
# Ruby program to demonstrate
# the include? method
# Taking a string and
# using the method
puts "Ruby".include? "by"
puts "String".include? "ui"
输出
true
false
例2 :
# Ruby program to demonstrate
# the include? method
# Taking a string and
# using the method
puts "Sample".include? "am"
puts "Input".include? "pt"
输出
true
false