Wow - more than 10 years and somehow I missed your reply.
Here is a usage, roughly transcribed from what would happen in the Real World:
my $struct = <<'DEF';
* Some comment
05 AMOUNT VALUE PIC S9(5)V99.
05 VALUE-DATE VALUE PIC X(8).
DEF
my @lines = split /\n/, $struct;
my $buffer = '';
for my $line (@lines) {
next if $line =~ /^ \*/; # comment
$buffer .= $line;
next unless $buffer =~ /\./; # the line did not end, we need more
$buffer =~ /^\s+(\d+)\s+(.+)/;
or croak "Weirdo input found: $buffer";
my( $level, $info) = ($1,$2);
if( $level == 1 ) {
# A record or group, ignore
} elsif ($info !~ /^(\S+)\s*(REDEFINES\s+(\S+))?\s*(PIC\s+[9XS].*?
+\.$/) {
croak "Weirdo info found: $info";
};
my $name = $1;
my $redefine = $2;
my $pic = $3;
my $size = 0;
my $decoder = sub { $_[0] };
if( $pic ) {
($size, $decoder) = PIC::decode_pic($pic,$decimal_separator,$e
+ncoding);
};
# ... use $size and $decoder to read and decode a number of bytes
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link or
or How to display code and escape characters
are good places to start.
|