Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Pretty Printing with Data::Dumper

by demerphq (Chancellor)
on Sep 09, 2005 at 11:34 UTC ( [id://490521]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    D:\>perl -MData::Dumper -e "@arr = qw (a b c); print Data::Dumper->new
    +([\@arr])->Indent(0)->Dump"
    $VAR1 = ['a','b','c'];
    ...
    
    D:\>perl -MData::Dump::Streamer -e "@arr = (qw (a b),(qw(c)) x 4); Dum
    +p(\@arr)->Names('*arr')->Indent(0)->Out()"
    @arr = ( 'a', 'b', ( 'c' ) x 4 );
    
  2. or download this
    D:\>perl -MData::Dump=dump -e "@arr = (qw (a b),(qw(c)) x 4); print du
    +mp(\@arr)"
    ["a", "b", "c", "c", "c", "c"]
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (9)
As of 2024-03-28 18:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found