Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Hash will not print if a value begins with 2 under certain conditions

by Athanasius (Archbishop)
on Jul 27, 2014 at 04:29 UTC ( [id://1095197]=note: print w/replies, xml ) Need Help??


in reply to Hash will not print if a value begins with 2 under certain conditions

Just a supplement to the advice given by Anonymous Monk:

Data::Dumper provides a Useqq configuration variable which, when set, causes Dumper to print any newline, tab, or carriage return characters as \n, \t, and \r, respectively. This makes it easier to see exactly what is present in each variable. Here is how I would deploy this feature to begin the debugging process:

... use Data::Dumper; $Data::Dumper::Indent = 0; $Data::Dumper::Terse = 1; $Data::Dumper::Useqq = 1; ... foreach my $key (sort keys %ref) { ... foreach(@temp) { if ($temp[0] == 2) { printf "\$key = %s\n \$ref{%s} = %s\n \$probes[%s] = %s\ +n", Dumper($key), Dumper($key), Dumper($ref{$key}), Dumper($key), Dumper($probes[$key]); print $key."\t".$ref{$key}."\t".$probes[$key]; } } }

Hope that helps,

Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

Replies are listed 'Best First'.
Re^2: Hash will not print if a value begins with 2 under certain conditions
by BillKSmith (Monsignor) on Jul 28, 2014 at 13:52 UTC
    I know that this is somewhat off-topic. Thanks for motivating me to read the documentation of Data::Dumper. Those configuration variables resolved a long standing problem.
    Bill

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (1)
As of 2024-04-24 16:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found