OK - here is some code I wrote (part of it shamelessly plagerized) because I could not find a module to satisfactorily parse your kind of data. This sould probably be retro-fitted into Text::FixedLength.

If you can figure out how to apply the 2 subroutines to your homework, power to you!:

use strict; #12345678901234567890123 my $str= "This That Other Next Last "; my $str2="One Fine Morning in May"; my $str3="Some format happened"; #my $fmt= [qw(6 6 7 4)]; # Lengths of each piece my $fmt = getLengths($str); my ($count,$blanklen,@lengths); #print " Length = $_\n" for @{getLengths($str)}; for ($str, $str2, $str3){ print "----Str=[$_] Fmt=@$fmt\n"; print " [$_]\n" for getPiecesByFixedLength($_, $fmt); print "--Last--\n"; } # -------------------------------------------------------------------- +-------- # Subroutine: getPiecesByFixedLength - given a string, delimiter, and +format return an arrray # -------------------------------------------------------------------- +-------- sub getPiecesByFixedLength { my $OriginalStr = shift || die 'getPiecesByFixedLength: need a strin +g'; my $format = shift || die 'getPiecesByFixedLength: need a forma +t'; ref $format eq 'ARRAY' or die "Second param Must be array ref\n"; my @out = (); foreach ( @$format ) { s/\D//g; # - save only digits my $ThisPiece = substr($OriginalStr,0,$_); $ThisPiece =~ s/^\s+//; $ThisPiece =~ s/\s+$//; push @out, $ThisPiece; substr($OriginalStr,0,$_) = ''; } return @out; } # -------------------------------------------------------------------- +-------- sub getLengths{ # Return a ref to an array containing Lengths of pieces of the strin +g.. my $OriginalStr=shift || die "getLengths needs string param\n"; my ($count, @ret); foreach(split /(\s+)/,$OriginalStr){ m/^\s+$/ and $ret[$count - 1]+= length($_) , next; $ret[$count] = length($_); #print "Got Piece $count [$_] Len " . length($_) . "\n"; $count++; } wantarray? return @ret : return \@ret; } # -------------------------------------------------------------------- +--------

"Experience is a wonderful thing. It enables you to recognize a mistake when you make it again."

In reply to Re: Re: Re: inserting in different places in a file by NetWallah
in thread inserting in different places in a file by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.