G'day Karim,

Welcome to the Monastery.

Firstly, I concur with ++haukex' response: Text::CSV is the appropriate tool for this task.

"After many attempts at using perl regexes, I am still stuck!"

In some other situation, where you simply want to convert a multi-line string to a single-line string, and preserve line-endings if they exist, you can use this regex:

s/\R(?!\z)//gm

Here's a quick command line test:

$ perl -E 'my @x = ("a\nb\nc\n", "a\nb\nc", "abc\n", "abc"); for (0 . +. $#x) { say "$_=|$x[$_]|"; $x[$_] =~ s/\R(?!\z)//gm; say "$_=|$x[$_] +|" }' 0=|a b c | 0=|abc | 1=|a b c| 1=|abc| 2=|abc | 2=|abc | 3=|abc| 3=|abc|

See also: "perlrebackslash: \R"; "perlre: Lookaround Assertions"; perlre.

Caveat: \R was introduced in v5.10.0: you'll need at least that version of Perl.

— Ken


In reply to Re: delimited file with multiline columns. by kcott
in thread delimited file with multiline columns. by Karim

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.