Skip to content

Instantly share code, notes, and snippets.

@marcusshepp
Created May 27, 2016 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcusshepp/f01fd52fa78b99c9c2300ec938a3465a to your computer and use it in GitHub Desktop.
Save marcusshepp/f01fd52fa78b99c9c2300ec938a3465a to your computer and use it in GitHub Desktop.
Ruby Does This String Include Any
## string include?
string = "marcus is my name"
bad_words = ["foo", "bar", "marcus"]
if bad_words.any? { | w | string.include? w }
puts "yes"
else
puts "no"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment