From: "Paul D. Kraus" Date: 2006-05-23T05:28:24+09:00 Subject: Creating Hash of Arrays ------=_Part_51648_18385264.1148329701992 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline How can I create a hash that contains an array for its value? How can I the= n loop through the hash keys and intern the contained arrays. Pseudo Code ------------------ myhash['customercode'][0]=3DFirstname myhash['customercode'][1]=3DM.I myhash['customercode'][2]=3DLastname myhash.each do |k,v| myhash['k'].each do |elm| puts "#{k} -> elm" end end ------=_Part_51648_18385264.1148329701992--