Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: perl regex extraction from a large input file

by smls (Friar)
on Sep 14, 2013 at 01:57 UTC ( [id://1054043]=note: print w/replies, xml ) Need Help??


in reply to perl regex extraction from a large input file

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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1054043]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (3)
As of 2024-04-20 01:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found