in reply to Re^2: Direferencing problem
in thread Direferencing problem

Hi,

Data::Dumper is part of the perl core and should be available for you to solve the same problem.

use Data::Dumper; ... print Dumper($element), "\n";

Regards
McA

Replies are listed 'Best First'.
Re^4: Direferencing problem
by David92 (Sexton) on Jul 30, 2014 at 08:08 UTC
    Updated my first post with DATA DUMPER output.