Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.ruby > #2196
| From | Simon Harrison <simon@simonharrison.net> |
|---|---|
| Newsgroups | comp.lang.ruby |
| Subject | Using grep on subarrays - help! |
| Date | 2011-04-03 08:32 -0500 |
| Organization | Service de news de lacave.net |
| Message-ID | <dd95c6e0e47f0378352ab56c23664c9c@ruby-forum.com> (permalink) |
Can anyone help with this? I thought grep would find any element that
matches in an array. It seems not...
irb(main):028:0> test = [['one', 'vol1'], ['one', 'vol2'], ['two',
'vol3']]
=> [["one", "vol1"], ["one", "vol2"], ["two", "vol3"]]
irb(main):029:0> test.grep(/one/)
=> []
irb(main):030:0> test.each.grep(/one/)
=> []
irb(main):031:0> test
=> [["one", "vol1"], ["one", "vol2"], ["two", "vol3"]]
irb(main):032:0> test.grep('one')
=> []
irb(main):033:0> test2 = ['one', 'one', 'two', 'three']
=> ["one", "one", "two", "three"]
irb(main):034:0> test2.grep(/one/)
=> ["one", "one"]
irb(main):035:0>
--
Posted via http://www.ruby-forum.com/.
Back to comp.lang.ruby | Previous | Next — Next in thread | Find similar | Unroll thread
Using grep on subarrays - help! Simon Harrison <simon@simonharrison.net> - 2011-04-03 08:32 -0500
Re: Using grep on subarrays - help! Jesús Gabriel y Galán <jgabrielygalan@gmail.com> - 2011-04-03 08:47 -0500
Re: Using grep on subarrays - help! Adam Prescott <adam@aprescott.com> - 2011-04-03 09:44 -0500
Re: Using grep on subarrays - help! Robert Klemme <shortcutter@googlemail.com> - 2011-04-04 04:13 -0500
Re: Using grep on subarrays - help! Simon Harrison <simon@simonharrison.net> - 2011-04-03 08:58 -0500
Re: Using grep on subarrays - help! 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-03 16:13 -0500
Re: Using grep on subarrays - help! 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-03 16:49 -0500
Re: Using grep on subarrays - help! Simon Harrison <simon@simonharrison.net> - 2011-04-04 14:06 -0500
Re: Using grep on subarrays - help! Rob Biedenharn <Rob@AgileConsultingLLC.com> - 2011-04-04 14:44 -0500
Re: Using grep on subarrays - help! 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-04 18:41 -0500
Re: Using grep on subarrays - help! Simon Harrison <simon@simonharrison.net> - 2011-04-04 15:05 -0500
Re: Using grep on subarrays - help! Rob Biedenharn <Rob@AgileConsultingLLC.com> - 2011-04-04 15:56 -0500
csiph-web