Skip to content

Instantly share code, notes, and snippets.

@cchandler
Created August 3, 2011 07:01
Show Gist options
  • Save cchandler/1122063 to your computer and use it in GitHub Desktop.
Save cchandler/1122063 to your computer and use it in GitHub Desktop.
INCLUSION = ["asdf"]
EXCLUSION = ["rofl"]
terms = ["asdfrofl", "asdf", "bbbb" ] # Only 1 valid term
results = terms.select {|s| INCLUSION.any?{|included| s.include? included} and not EXCLUSION.any?{ |excluded| s.include? excluded } }
p results
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment