in reply to trying to identify the exact data stored from dump - [ ' ];

use Data::Dumper qw/ dd /; dd( $VAR );
  • Comment on Re: trying to identify the exact data stored from dump - [ ' ]; (ddumper)

Replies are listed 'Best First'.
Re^2: trying to identify the exact data stored from dump - [ ' ]; (ddumper)
by LanX (Saint) on Jan 11, 2014 at 23:12 UTC
    I think you meant Data::Dump and dd is auto-exported. :)

    perl -e' use Data::Dump; $var="\b"; dd $var' "\b"

    Cheers Rolf

    ( addicted to the Perl Programming Language)