Open In App
Related Articles

Ruby | String include? Method

Improve Article
Improve
Save Article
Save
Like Article
Like

include? is a String class method in Ruby which is used to return true if the given string contains the given string or character.

Syntax: str.include?

Parameters: Here, str is the given string.

Returns: true if the given string contains the given string or character otherwise false.

Example 1:




# Ruby program to demonstrate 
# the include?  method 
       
# Taking a string and 
# using the method
puts "Ruby".include? "by"                 
puts "String".include? "ui"


Output:

true
false

Example 2:




# Ruby program to demonstrate 
# the include?  method 
       
# Taking a string and 
# using the method
puts "Sample".include? "am"                 
puts "Input".include? "pt"


Output:

true
false
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 09 Dec, 2019
Like Article
Save Article
Previous
Next
Similar Reads