开发者

Ruby: merge two hash as one and with value connected

开发者 https://www.devze.com 2022-12-30 18:51 出处:网络
2 hash: h1 = { \"s1\" => \"2009-7-27\", \"s2\" => \"2010-3-6\", \"s3\" => \"2009-7-27\" } h2 = { \"s1\" => \"12:29:15\", \"s2\" => \"10:00:17\", \"s3\" => \"12:25:52\" }

2 hash:

h1 = { "s1" => "2009-7-27", "s2" => "2010-3-6", "s3" => "2009-7-27" }

h2 = { "s1" => "12:29:15", "s2" => "10:00:17", "s3" => "12:25:52" }    

I want to m开发者_如何转开发erge the two hash as one like this:

h = { "s1" => "2009-7-27 12:29:15",
      "s2" => "2010-3-6 10:00:17", 
      "s3" => "2009-7-27 2:25:52" }

what is the best way to do this? thanks!


h = h1.merge(h2){|key, first, second| first + " " + second }

It will work if your keys are the same. In your code, they aren't ("s1" vs "s1="). Are they supposed to be the same keys?


You mean:

Hash[h1.map{|k,v| [k, "#{v} #{h2[k]}"]}]

 => {"s3"=>"2009-7-27 12:25:52", "s1"=>"2009-7-27 12:29:15", "s2"=>"2010-3-6 10:00:17"}

Note hashes are unordered, if you want an ordered hash you probably need to look at this

0

精彩评论

暂无评论...
验证码 换一张
取 消