in reply to Re^4: Empty string checking in output
in thread Empty string checking in output
One way (there are many 'data dumpers'). Note: you must pass a reference to the array to the Dumper function.
>perl -wMstrict -le "use Data::Dumper; my @output = qw(1 2 foo); print Dumper \@output; " $VAR1 = [ '1', '2', 'foo' ];
See Data::Dumper.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Empty string checking in output
by Kumar Mantri (Novice) on Aug 18, 2011 at 13:38 UTC | |
by AnomalousMonk (Archbishop) on Aug 18, 2011 at 17:43 UTC |