in reply to Pack decimal possibility

Specifically,
my $packed = pack "H*", sprintf "%07dC", $num_records;
would give you a PIC S9(7) COMP-3 packed decimal (positive only).

Perl can count the records and add the trailer record, too, but I don't know what record format you're using.

Replies are listed 'Best First'.
Re^2: Pack decimal possibility
by mikeward61 (Initiate) on May 26, 2010 at 23:47 UTC
    Thanks, this worked perfectly...