Hi,

I am generating CSV event log files and some of the lines are not on one line, for example:

I want to read everyline that matches KB[0-9] and store that data on the end of the previous line and keep doing that until it reaches a line that does not match KB[0-9].

My code as usual is failing miserably. (in the example below I tried to read the KB lines into a temporary variable.

while (<__DATA__>) { # I don't know how to calculate the length $# of __DATA__ # so I just put 10 in there instead. for($i = 0; $i < 10; $i++) { if($data[$i] =~ m/KB[0-9]/) { do { push(@temp, $data[$i]); $i++; }while ($data[$i] =~ m/KB[0-9]/); } } # For some reason the loop is loading the whole file # into @temp print "@temp\n"; } __DATA__ "Information","17","4/13/2006 12:54:25 PM","Windows Update Agent","ISA +","Installation","N/A","Installation Ready: The following updates are + downloaded and ready for installation. To install the updates, an ad +ministrator should log on to this computer and Windows will prompt wi +th further instructions: - Security Update for Windows Server 2003 (KB911562) - Windows Malicious Software Removal Tool - April 2006 (KB890830) - Cumulative Security Update for Internet Explorer for Windows Server +2003 (KB912812) - Security Update for Windows Server 2003 (KB908531) - Cumulative Security Update for Outlook Express for Windows Server 20 +03 (KB911567)" "Information","17","4/13/2006 12:54:19 PM","Windows Update Agent","ISA +","Installation","N/A","Installation Ready: The following updates are + downloaded and ready for installation. To install the updates, an ad +ministrator should log on to this computer and Windows will prompt wi +th further instructions: - Security Update for Windows Server 2003 (KB911562) - Windows Malicious Software Removal Tool - April 2006 (KB890830) - Cumulative Security Update for Internet Explorer for Windows Server +2003 (KB912812) - Security Update for Windows Server 2003 (KB908531)"
Please help :(

In reply to Problem with matching multiple lines by jeiku

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.