Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Read the Dumper data back to a hash.

by moritz (Cardinal)
on Jun 21, 2010 at 06:38 UTC ( [id://845673]=note: print w/replies, xml ) Need Help??


in reply to Read the Dumper data back to a hash.

Don't dump the hash as

print Dumper %hash;

But rather use

print Dumper \%hash; # ^

Then you can simply use eval to obtain a hash reference, so for example

my %copied_hash = %{ eval $string };
Perl 6 - links to (nearly) everything that is Perl 6.

Replies are listed 'Best First'.
Re^2: Read the Dumper data back to a hash.
by rachitmohta11 (Novice) on Jun 21, 2010 at 07:07 UTC
    What is $string in eval $string? Is it the file handle?

      The string returned by Dumper.

        Sorry, but i could not understand.
        Please tell me how does Dumper return the string..

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://845673]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-25 14:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found