From: LAMBEAU Bernard Date: 2009-04-09T17:53:18+09:00 Subject: Re: Hash key : string or symbol!? The easiest would be to decide which kind of key you really want (String of Symbol), and ensure that you use only them. Sorry for this a little bit sarcastic answer but Ruby's behavior is perfectly valid here. blambeau On Thu, Apr 9, 2009 at 10:31 AM, Abir B. wrote: > Hello, > I had to manipulate a hash (delete pairs, add pairs, ) > > But my problem is that the data comes sometimes as string and other > times as symbol, and this makes problems in updating the hash (sometimes > I have an entry 2 times with a symbol key and string key). > > for example in this code: > hash = {:a => :b, 2 => 3, "g"=> 5 } > => {2=>3, "g"=>5, :a=>:b} > h = {:a => :b, 2 => 4, :g=> 6 } > => {:g=>6, 2=>4, :a=>:b} > hash.merge(h) > => {:g=>6, 2=>4, "g"=>5, :a=>:b} > > I want that the value of hash["g"] changes to 6 without adding another > pair {:g => 6} > > Someone has any idea? > thanks > -- > Posted via http://www.ruby-forum.com/. > >