从字符串生成嵌套哈希并在ruby中深度合并

时间:2012-08-14 00:52:10

标签: ruby hash merge

我在JSON格式的数据库中有一个哈希。例如

{
  "one" => {
    "two" => {
      "three" => {}
    }
  } 
}

我需要从字符串生成这个。上面的例子将从字符串“one.two.three”生成。

首先我该怎么做?

问题的第二部分。我将收到多个字符串 - 每个字符串构建在最后一个字符串上。所以,如果我得到“one.two.three”,然后是“one.two.four”,我就是这样:

{
  "one" => {
    "two" => {
      "three" => {},
      "four" => {}
    }
  } 
}

如果我两次获得“one.two.three”,我希望最新的“三”值覆盖那里的内容。字符串也可以是任何长度(例如“one.two.three.four.five”或只是“one”)。希望这有意义吗?

1 个答案:

答案 0 :(得分:13)

生成嵌套哈希:

hash = {}

"one.two.three".split('.').reduce(hash) { |h,m| h[m] = {} }

puts hash #=> {"one"=>{"two"=>{"three"=>{}}}}

如果您没有安装rails,请安装activesupport gem:

gem install activesupport

然后将其包含在您的文件中:

require 'active_support/core_ext/hash/deep_merge'

hash = {
  "one" => {
    "two" => {
      "three" => {}
    }
  } 
}.deep_merge(another_hash)

对内部的访问将是:

hash['one']['two']['three'] #=> {}