From: Albert Schlef Date: 2008-05-02T01:09:49+09:00 Subject: Re: Search string for occurneces of words stored in array | "This is my test sentence".include?("This") returns true | | but i want something like | | "This is my test sentence".include?("This", "is", "my") Yet another solution: "This is my test sentence".split & ["This", "is", "my"] -- Posted via http://www.ruby-forum.com/.