Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Data::Dumper to print a perl hash with configuration, which will be evaluated by another script. The problem is that it always prints $VAR = at the start of output. I tried settings the Varname parameter to empty string, but then i get $1 instead of $VAR. How do I prevent printing the variable name using Dumper?

my $params = {-PARAMS => 0} #data

local $Data::Dumper::Purity = 1;
local $Data::Dumper::Varname  = "";
print Dumper($params) ;

Prints:

$1 = {
    '-UPDATE' => 0,
}

I want to have:

{
    '-UPDATE' => 0,
}
share|improve this question

2 Answers

up vote 11 down vote accepted

Simply set $Data::Dumper::Terse = 1; and it should work:

$ perl -MData::Dumper -wle '$Data::Dumper::Terse = 1; print Dumper {-PARAMS => 1}'
{
  '-PARAMS' => 1
}
share|improve this answer
That did the trick - thanks! – Secator Mar 27 '12 at 8:54

Or use the OO syntax:

print Data::Dumper->new([ {-PARAMS => 1 } ])->Terse(1)->Dump;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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