Data::Dumper is a Perl library for generating stringified representations of data structures, suitable for both printing and eval.

learn more… | top users | synonyms

0
votes
2answers
75 views

Perl - Hash reference structure of variable depth

I have a question I am hoping someone could help with. I have a tab-delimited text file called FILE.txt: (note two of the ages are missing): BOY Fred Smith 56 BOY David Jones ...
0
votes
1answer
38 views

How to log res.locals content in console with ExpressJS and Nodejs for debugging?

Beginner here. I'm working on an application using Node.js and ExpressJS. I have the basic need of logging the entire or partial res.locals's content in my console for debugging. I've tried this : ...
-1
votes
1answer
53 views

Querying multiple times in Oracle using perl returns only the first query

Note: I have corrected the variable differences and it does print the query from the first set but it returns nothing from the second set. If I use the second set only it works. In the code below, I ...
0
votes
2answers
57 views

Perl Issue putting data into array reference (with perl URI)

I have the following code: #!usr/bin/perl use strict; use warnings; use URI qw( ); my @insert_words = qw( HELLO ); my $newURLs; while ( my $baseURL = <DATA>) { chomp $baseURL; my $url ...
0
votes
1answer
88 views

Perl and Data::Dumper::HTML + cgi

First of all my english is not the best, thank you for understanding. A portion of the code principal index.cgi my ($url, $params) = split(/\?/, $ENV{'REQUEST_URI'}); my @pairs = split(/&/, ...
1
vote
2answers
198 views

Perl Data::Dumper hashes inside array?

I have a program that parses some XML using XML::Simple. It appears at some point the XML has redundant entries in it that get serialized, but I can't for the life of me figure out how to get that ...
5
votes
6answers
270 views

How to deserialize Perl Data::Dumper output in PHP

I have a result of export variable in Perl like this string: $VAR1 = { 'guard' => undef, 'work_hand' => undef, 'images' => {'1' => { ...
2
votes
3answers
162 views

Is there a less verbose alternative to Perl's Data::Dumper?

I'm trying to print some parse trees, and Data::Dumper is very verbose for that, for example printing: { 'A' => { 'ID' => 'y' }, 'OP' => '=', 'B' => { 'NUM' => '5' } ...
3
votes
3answers
460 views

I serialized my data in Perl with Data::Dumper. Now when I eval it I get “Global symbol ”$VAR1“ requires explicit package name”

I serialized my data to string in Perl using Data::Dumper. Now in another program I'm trying to deserialize it by using eval and I'm getting: Global symbol "$VAR1" requires explicit package name ...
5
votes
1answer
237 views

Data::Dumper::Simple usage

Just interested: Is there a way to do the second form of Dumper in this following snippet? use Modern::Perl; use Data::Dumper::Simple; my $data = { name => 'jim', age => 21, updated => ...
4
votes
2answers
298 views

How to prevent printing the variable name using `Data::Dumper`

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 ...
3
votes
3answers
3k views

Perl hash Data::Dumper

In Perl I need to analyze a huge hash, so I print it into a file using Data::Dumper module. Because it is a huge file, it is very hard to read. Is it possible somehow to print Dumper output nicely, so ...
1
vote
1answer
132 views

Retrieving Data::Dumper elements

I'm using Data::Dumper to retrieve information from a server with SOAP messaging and need some assistance with assigning the return values for processing. My code is: my $cm = new SOAP::Lite ...
2
votes
3answers
424 views

perl printing hash of arrays with out Data::Dumper

Here is the code, I know it is not perfect perl. If you have insight on how I an do better let me know. My main question is how would I print out the arrays without using Data::Dumper? ...
0
votes
2answers
78 views

How do I work with just one key and value from Data::Dumper output

I have data dumper outputting a remotely hosted xml file into a local text file and I am getting the following info: $VAR1 = { 'resource' => { ...
0
votes
3answers
107 views

Perl module that works like Data::Dumper but allow data manipulation

Is there a popular Perl module that works like Data::Dumper but allows user to write hook to manipulate the data inside complex structure or object. There are a few modules showing up in google such ...
2
votes
4answers
245 views

I don't want to use Data::Dumper's default settings, what can I do?

I find myself using this method to print out Perl values all the time: sub d { Data::Dumper->new([])->Terse(1)->Indent(0)->Values([$_[0]])->Dump; } say "x = ", d($x), ' y = ', ...
1
vote
2answers
180 views

Perl web API using Data::Dumper

We've developed an open web API using Apache and mod_perl, where you can pass text created by Data::Dumper to make requests. Our data generally looks like this: $VAR1 = { 'OurField' => ...
6
votes
2answers
1k views

Display data from an array of objects

I'm trying to display data from an array of objects obtained using another company's API, but I am getting errors when I attempt to using a foreach loop. I'm using Dumper to display everything in the ...
2
votes
2answers
490 views

Perl Data::Dumper output processing

I am using the DATA::Dumper api to parse an html table.. Here is the perl code: print Dumper $row; Here is the output: $VAR1 = [ 'Info1', 'Info2', 'Info3', ...
1
vote
1answer
71 views

how do I access this item?

I am using Data::Dumper. My code is: use Data::Dumper; blah, blah, blah..... print Dumper \@data; My output is: $VAR1 = [ [ 'Dave', 'Green', '5', ], [ ...
6
votes
2answers
762 views

Perl's Data::Dumper shows objects instead of values

foreach my $row (1..$end) { foreach my $col (3..27 ) { # skip empty cells next unless defined $worksheet->Cells($row,$col)->{'Value'}; # print out the contents of a ...
2
votes
2answers
509 views

Using Dumper not triggering a failure

when running code like this: use strict; print Dumper "something"; nothing is printed out and no error occurs during compile and runtime. Why does this happen? Why doesn't strict prevent this code ...
4
votes
4answers
837 views

Can Perl store an array reference as a hash key?

Consider the following: use strict; use Data::Dumper; my $hash={['one','two']=>[1,2]}; print Dumper($hash); =for comment prints.... $VAR1 = { 'ARRAY(0x35358)' => [ ...
3
votes
3answers
854 views

Perl persistent data storage using Data::Dumper

I have been trying to figure this out for way to long tonight. I have googled it to death and none of the examples or my hacks of the examples are getting it done. It seems like this should be pretty ...
1
vote
4answers
321 views

Is there a safe way of using eval to unthaw Data::Dumper output in Perl?

I have an object that uses freezes data as such: sub frozen_data { my $self = shift; $Data::Dumper::Indent = 0; $Data::Dumper::Terse = 1; return Data::Dumper->Dump( [ ...
4
votes
7answers
2k views

How can I control the formatting of Data::Dumper's output?

I am using Data::Dumper::Dumper() method. The output is good, but can be made little compact and more good looking. How I can control it? What are the better alternatives?
0
votes
3answers
5k views

In Perl, how can I write the output of Dumper to a file?

How can I make Data::Dumper write a dump into a file?
3
votes
3answers
636 views

How do I control the variable names in Perl's Data::Dumper?

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 }; ...
5
votes
9answers
4k views

How do I read back in the output of Data::Dumper?

Let's say I have a text file created using Data::Dumper, along the lines of: my $x = [ { foo => 'bar', asdf => undef }, 0, -4, [ [] ] ]; I'd like to read that file back in and get $x back. I ...