As Corion mentioned, your best bet is probably one of the many fine CSV parsing modules.

If you want to code your own solution, here is my suggestion. It will, I think (but this is untested), produce the same output as the code in wilsond's reply, but introduces the map and grep built-ins and a little more use of regexes (see perlre, perlretut and perlrequick), all of which I think you will find rewarding.

(BTW: I, also, am afraid I do not clearly understand your requirements, but perhaps this example may yet be helpful.)

use warnings; use strict; my $splitter = '|'; my $joiner1 = $splitter; my $joiner2 = ' '; while (my $record = <DATA>) { my ($head, @body) = grep ! m{ \A [\nSQ] \z }xms, split m{ \Q$splitter\E }xms, $record ; print join $joiner2, map join($joiner1, $head, $_), @body ; print "\n"; } __DATA__ AAAA|Q|dfadfsfaf|S|asfddsfasfdasdfaf|werwqr345435| BBBB|Q|ccccccccc|S|ddddddddddddddddd|eeeeee111111| FFFF|Q|ggggggggg|S|hhhhhhhhhhhhhhhhh|iiiiii222222|
Output:
AAAA|dfadfsfaf AAAA|asfddsfasfdasdfaf AAAA|werwqr345435 BBBB|ccccccccc BBBB|ddddddddddddddddd BBBB|eeeeee111111 FFFF|ggggggggg FFFF|hhhhhhhhhhhhhhhhh FFFF|iiiiii222222

In reply to Re: Parsing delimited file by AnomalousMonk
in thread Parsing delimited file by ravula1

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.