通过虚线路径从Ruby散列中深度删除

时间:2013-06-19 20:48:22

标签: ruby

给定Ruby中嵌套哈希的哈希值(深度可能会有所不同):

hash = {"status_message"=>
         { "destination_does_not_exist"=>
           {"message_header"    => "Zielordner existiert nicht",
            "message_body"      => "Der Zielordner für das Backup existiert nicht mehr.",
            "corrective_action" => "Erstellen Sie den Zielordner."
           }
         }
       }

如何使用简单的“点缀”表示法删除键及其所有子值? 类似的东西:

path = "status_message.destination_does_not_exist.message_header"
hash.delete!(path)

1 个答案:

答案 0 :(得分:6)

path = path.split '.'
leaf = path.pop

path.inject(hash) {|h, el| h[el]}.delete leaf