AnomalousMonk wrote:

"...but might your maintainer understand substr better?"

I don't know but as no one provided a solution that uses substr, i wrote one:

#!/usr/bin/env perl use strict; use warnings; my @pairs = ( [ 0, 1 ], [ 1, 15 ], [ 16, 14 ], [ 30, 4 ], [ 35, 8 ] ); while ( my $line = <DATA> ) { for my $pair (@pairs) { my $index = $pair->[0]; my $offset = $pair->[1]; print substr $line, $index, $offset; print qq( ); } print qq(\n); } __DATA__ C4432882490H019000020150211ESL6690 0H2015PC C4833076550HC0P0000201412093J46651 0H2015DX C6033106980H057130020150323FRE7602 0H2015PC C663160140MT007015G20141124274847A MT2015PC

Output:

karls-mac-mini:monks karl$ ./substring.pl C 4432882490H0190 00020150211ESL 6690 0H2015PC C 4833076550HC0P0 000201412093J4 6651 0H2015DX C 6033106980H0571 30020150323FRE 7602 0H2015PC C 663160140MT0070 15G20141124274 847A MT2015PC

Regards, Karl

«The Crux of the Biscuit is the Apostrophe»


In reply to Re: Unpack or substr to create CSV? by karlgoethebier
in thread Unpack or substr to create CSV? by johnmck

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.