On Jun 14, 8:50 am, [EMAIL PROTECTED] (Chas Owens) wrote: > To force Data::Dumper to do the right thing for the > display you must set $Data::Dumper::Useqq to 1. It will then use > doublequoted strings and escape characters (like \t, \n, \0 etc). > > perl -MData::Dumper -e '$Data::Dumper::Useqq = 1;%h = ("\0", 3);print > Dumper(\%h);' > $VAR1 = { > "\0" => 3 > };
Good to know for future reference. Thank you, Paul Lalli -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/