Hi all, I have some csv files where the line breaks got lost, so the file comes as one long line.

For example (this one has 6 columns):

"Business Date","Location Name","Revenue Center Name","Tender Count"," +Tender Name","Tender Total" 2007-05-14 00:00:00.0,"Aville","x",300,"b +",6899 2007-05-14 00:00:00.0,"Aville","x",6,"c",198.50 2007-05-14 00: +00:00.0,"Aville","b",290,"Cash",12336.10 2007-05-14 00:00:00.0,"Bvill +e","c",14,"d",958.40

I want to split this file into lines, and then I can process the lines using the normal csv handling stuff (split or Text::CSV).

The question is - what is the slick Perl Way to split this into lines? Some files have 6 columns, others have 10 or 14 .

Please help
reinier


In reply to splitting cvs file without line breaks by rendier

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.