Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Perl Unpack Cobol Binary File and Fields

by sundialsvc4 (Abbot)
on May 06, 2020 at 23:19 UTC ( [id://11116524]=note: print w/replies, xml ) Need Help??


in reply to Perl Unpack Cobol Binary File and Fields

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^2: Perl Unpack Cobol Binary File and Fields
by soonix (Canon) on May 07, 2020 at 12:07 UTC
    You missed that FIELD4 has PICTURE 9(8) which doesn't fit in two bytes.

    But, you are right, the modules for BCD do exist, as you expected, however, they are not the easiest to find.

    Meanwhile, dbarkho14 probably has his problem solved, but here's my take on it, anyway:
    (test data from Re^2: Perl Unpack Cobol Binary File and Fields)

    use 5.011; use warnings; use Data::Dumper; my $rec = "\0\0\1\257\a\344\0\3\0\0\0s\0\6\2\267\0\0\0\0\0\0\5E\35\0\0 +\0\0\0\0\0\0\f"; say "Length is ", length $rec; my @fields = unpack "l>s>s>l>s>s>H18H18", $rec; say Dumper @fields; say Dumper map { my ($value, $sign) = unpack "A17A"; $value = ( $sign =~ /[BD]/i ? -1 : +1 ) * $value; } @fields[-2 .. -1];
    A reply falls below the community's threshold of quality. You may see it by logging in.
    A reply falls below the community's threshold of quality. You may see it by logging in.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11116524]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (2)
As of 2024-04-25 21:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found