Ruby 字符串 include?方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程