Path: csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!weretis.net!feeder4.news.weretis.net!news.cgarbs.de!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!talisker.lacave.net!lacave.net!not-for-mail From: 7stud -- Newsgroups: comp.lang.ruby Subject: Re: Using grep on subarrays - help! Date: Mon, 4 Apr 2011 18:41:04 -0500 Organization: Service de news de lacave.net Lines: 60 Message-ID: <3fcc2d1bc9b4ca54a656e2dd1db9702f@ruby-forum.com> References: <38d8baa728f8f62120993c3f49b2c110@ruby-forum.com> NNTP-Posting-Host: bristol.highgroove.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: talisker.lacave.net 1301960491 46252 65.111.164.187 (4 Apr 2011 23:41:31 GMT) X-Complaints-To: abuse@lacave.net NNTP-Posting-Date: Mon, 4 Apr 2011 23:41:31 +0000 (UTC) In-Reply-To: <38d8baa728f8f62120993c3f49b2c110@ruby-forum.com> X-Received-From: This message has been automatically forwarded from the ruby-talk mailing list by a gateway at comp.lang.ruby. If it is SPAM, it did not originate at comp.lang.ruby. Please report the original sender, and not us. Thanks! For more details about this gateway, please visit: http://blog.grayproductions.net/categories/the_gateway X-Mail-Count: 380946 X-Ml-Name: ruby-talk X-Rubymirror: Yes X-Ruby-Talk: <3fcc2d1bc9b4ca54a656e2dd1db9702f@ruby-forum.com> Xref: x330-a1.tempe.blueboxinc.net comp.lang.ruby:2285 Simon Harrison wrote in post #990886: > Thanks for all the tips. I think #select fits best: > > file_results = @films.select { |a, b| /#{@film}/i =~ a } > > > Just one question. Obviously in the above, a and b refer to the first > and second elements in each subarray. Let's say we have this array: > > => [["one", "two", "three"], ["one"], ["two", "three"], ["one", > "three"]] > Neither grep() or include?() depended on the size of the sub-arrays they are searching, so the answer is the same: data = [ ["one", "two", "three"], ["one"], ["two", "three"], ["one","three"] ] target = 'one' results = data.select do |arr| arr.include?(target) end p results --output:-- [["one", "two", "three"], ["one"], ["one", "three"]] However, if your target will only appear in the first position of the array, then it is much more efficient to just check the first element of each array: data = [ ["one", "two", "three"], ["ONE"], ["two", "three"], ["oNe","three"] ] target = 'one' results = data.select do |arr| arr[0].downcase == target end p results --output:-- [["one", "two", "three"], ["ONE"], ["oNe", "three"]] -- Posted via http://www.ruby-forum.com/.