From: Maurizio Cirilli Date: 2010-10-26T22:55:27+09:00 Subject: Re: Extraction of single subarrays from multidimensional array Thanks a lot Siep for your prompt help. -- Maurizio On Oct 26, 1:41 am, Siep Korteling wrote: > You're working too hard. The most simple way usually works. Just > > ss.each do |codon_cluster| >   #do something with codon_cluster, like; >   p codon_cluster > end > > is enough. > Since all these strings are different objects (eating memory) you might > want to convert them into symbols (google them) as soon as possible. > > -- > Posted viahttp://www.ruby-forum.com/.