This is how I would do it:

  1. Write a regex that matches every possible "test-case" block, i.e. a block of the form:
    [Case-Url] - www.google.com [Req-URL ] - www.qtp.com ***Passed***

  2. Add parenthesis to the regex, to capture the parts that should be extracted (as described in the Extracting matches section of perlretut).
    (In this example block, the parts to extract would be "www.google.com", "www.qtp.com" and "Passed")

  3. Apply the regex to the input string repeatedly, using a while loop and the /.../g regex construct (as described in the Global matching section of perlretut).
    while ($input =~ /YOUR_REGEX_GOES_HERE/gs) { print "Extracted values $1, $2, $3\n"; }

  4. Inside the while loop, do whatever it is you want to do with the extracted values.
    If you want to collect a list of all successful tests and another lists of all failed tests, you should define two corresponding arrays above the while loop, and then inside the loop add an entry to the right array on each iteration.

If you run into further problems, report back with the regex/code you've written so far.


In reply to Re: perl regex extraction from a large input file by smls
in thread perl regex extraction from a large input file by Anonymous Monk

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.