in reply to Perl 5.10 & perl 5.8.3 solaris

I somehow suspect that this is more due to the platform difference than different perl versions. In particular you could check if the line endings differ on both platforms, and if they were removed correctly.

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
    Hi, Thanks a lot, it works like charms. I was so fix with the bug to overlook such small thing. it was the \r character that screw up the apps. Regards troy