I have a Ruby hash which looks like:
{ "id" => "123", "name" => "test" }
I would like to convert it to:
{ :id => "123", :name => "test" }
|
Update: @mu is too short: Didn't see word "recursive", but if you insist (along with protection against non-existent
|
|||||
|
|
If you happen to be in Rails then you'll have
and
If you want to recursively symbolize inner hashes then I think you'd have to do it yourself but with something like this:
You might want to play with the
Note that The second
into this:
You could monkey patch either version of |
|||||||
|
|
Try this:
This iterates over the keys, and for each one, it deletes the stringified key and assigns its value to the symbolized key. |
|||||||||
|
|
I'm partial to:
This works because we're iterating over the hash and building a new one on the fly. It isn't recursive, but you could figure that out from looking at some of the other answers.
|
|||||||||||
|
|
Victor Moroz provided a lovely answer for the simple recursive case, but it won't process hashes that are nested within nested arrays:
If you need to support hashes within arrays within hashes, you'll want something more like this:
|
||||
|
|