in reply to What are all the false values in Perl ((conditional, boolean, whitespace, unprintable characters)
Update:
Should give you the ascii codes of each character in $script::debug, which will hopefully be useful.my @unpack = unpack('C*', $script::debug); print "Unpack info: @unpack\n";
|
|---|