up vote 1 down vote favorite
2
share [g+] share [fb]

I've got this simple Perl script:

#! /usr/bin/perl -w

use strict;
use Data::Dumper;

my %foo = ( 'abc' => 1 );

print Dumper(\%foo);

It outputs:

$VAR1 = {
          'abc' => 1
        };

How do I make it output this instead?

%foo = (
         'abc' => 1
       );
link|improve this question

feedback

3 Answers

up vote 14 down vote accepted
print Data::Dumper->Dump( [ \%foo ], [ qw(*foo) ] );

The extended syntax takes two arrayrefs: one of scalars to dump, and one of names to use. If the name is prefixed by * and the corresponding scalar is an arrayref or hashref, an array or hash assignment is produced.

link|improve this answer
Ah, I had tried sticking everything I could think of (or copy-paste from the perldoc) in between the parentheses, but I hadn't realized that the problem was I was using Dumper() instead of Data::Dumper->Dump(). – raldi May 26 '09 at 3:17
2  
Amazing what reading the documentation can do for you :) – ysth May 26 '09 at 3:46
feedback

In addition to ysth's answer, you can use Ovid's Data::Dumper::Names module.

link|improve this answer
feedback

Also, Data::Dumper::Simple does roughly that.

link|improve this answer
Beware the source filter. It bites. – Kent Fredric May 26 '09 at 14:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.