Answers for "rails check if word in string"

1

if contains ruby

my_string = "abcdefg"
if my_string.include? "cde"
   puts "String includes 'cde'"
end
Posted by: Guest on November-10-2020

Code answers related to "rails check if word in string"

Browse Popular Code Answers by Language