J'ai une chaîne qui ressemble à un hachage :
"{ :key_a => { :key_1a => 'value_1a', :key_2a => 'value_2a' }, :key_b => { :key_1b => 'value_1b' } }"
Comment je peux en tirer un Hash ? Comme :
{ :key_a => { :key_1a => 'value_1a', :key_2a => 'value_2a' }, :key_b => { :key_1b => 'value_1b' } }
La chaîne peut avoir n'importe quelle profondeur d'imbrication. Elle possède toutes les propriétés de typage d'un Hash valide en Ruby.
0 votes
Je pense qu'Eval va faire quelque chose ici. Je vais d'abord tester. J'ai posté la question trop tôt, je pense :)
0 votes
Ohh oui, il suffit de le passer à l'évaluation :)