in reply to Strange command line output after using Storable.pm
That will show you if there are any bizarre characters in the string.my $stored = freeze($hash); $stored =~ s/\r/\\r/g; $stored =~ s/\n/\\n/g; $stored =~ s/\t/\\t/g; $stored =~ s/\cH/\\b/g; print "<$stored>\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Strange command line output after using Storable.pm
by nysus (Parson) on Jun 12, 2001 at 06:40 UTC |