5

给定这种在 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)
4

1 回答 1

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

path.inject(hash) {|h, el| h[el]}.delete leaf
于 2013-06-19T20:55:47.640 回答