Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

RE: Data::Dumper (Adam: Sample Usage)

by Adam (Vicar)
on Oct 27, 2000 at 23:00 UTC ( [id://38864]=note: print w/replies, xml ) Need Help??


in reply to Data::Dumper

I'm always forgeting the way to get Data::Dumper to print a hash and put the name of the hash in-place of the "$VAR". So this is as good a place as any to stick it where I can find it quickly, and other people can see an example usage.
use strict; use Data::Dumper; my %hash = ( 'some' => 'stuff' ); print Data::Dumper->Dump([\%hash], ["hashname"]), $/;

Replies are listed 'Best First'.
Re: RE: Data::Dumper (Adam: Sample Usage)
by dkubb (Deacon) on Jan 18, 2001 at 06:24 UTC

    Here's an example of how I use Data::Dumper, on one line, during debugging. It produces a pretty clean output of the data structure:

    print Data::Dumper->new([\%hash],[qw(hash)])->Indent(3)->Quotekeys(0)->Dump;

Log In?
Username:
Password:

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

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

    No recent polls found