Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^3: Data Dumper Question

by Anonymous Monk
on Dec 27, 2009 at 07:10 UTC ( [id://814487]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Data Dumper Question
in thread Data Dumper Question

$ perldoc Data::Dumper |grep eval printing and "eval" eval Data::Dumper->Dump([$foo, $bar], [qw(foo *ary)]); eval $d->Dump; The return value can be "eval"ed to get back an identical copy of +the The default output of self-referential structures can be "eval"ed, + but fill in these references. Moreover, if "eval"ed when strictures ar +e in Controls the degree to which the output can be "eval"ed to rec +reate output may not always be parseable by "eval". $bar = eval(Dumper($boo)); $Data::Dumper::Purity = 1; # fill in the holes for eva +l $d = eval $c; if "Purity" is set. You can "eval" the result, but bear in mind th +at the
$Data::Dumper::Purity = 1; makes it write
$VAR1 = { 'test1' => [ { 'temp' => '123' } ], 'test2' => [ {} ] }; $VAR1->{'test2'}[0] = $VAR1->{'test1'}[0];
You could use YAML

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-04-25 21:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found