in reply to Perl 5.10 & perl 5.8.3 solaris
A good way to print strings that might contain non-printable characters is Data::Dumper:
use Data::Dumper; local $Data::Dumper::Useqq = 1; ... print Dumper($str_eval);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl 5.10 & perl 5.8.3 solaris
by troy222 (Initiate) on Sep 11, 2008 at 08:41 UTC |