in reply to Re: how to extract original string from binary files?
in thread how to extract original string from binary files?

Hi Marshall, I got the solution. Thanks for help! Swapnil
  • Comment on Re^2: how to extract original string from binary files?

Replies are listed 'Best First'.
Re^3: how to extract original string from binary files?
by Corion (Patriarch) on May 19, 2016 at 08:46 UTC

    As you mention EBCDIC, are you aware that Perl can decode EBCDIC data very well?

    Usually decoding the conent of (PIC X) fields using

    my $printable = decode('cp37', $input);
    or
    my $printable = decode('cp1047', $input);