Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
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??


in reply to Pretty Printing with Data::Dumper

Depends what you want to do. And ill just chime in with yet another dumper to use... :-)

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 c); Dump(\@arr)->In +dent(0)->Out()" $ARRAY1 = [ '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 );

And yet another.

D:\>perl -MData::Dump=dump -e "@arr = (qw (a b),(qw(c)) x 4); print du +mp(\@arr)" ["a", "b", "c", "c", "c", "c"]
---
$world=~s/war/peace/g

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 chilling in the Monastery: (3)
As of 2024-04-24 05:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found