Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Extracting string from a file

by pvaldes (Chaplain)
on Nov 23, 2013 at 02:00 UTC ( [id://1063999]=note: print w/replies, xml ) Need Help??


in reply to Extracting string from a file

I have a log file with more than 10000 lines

Not to much lines, but, your target should be, probably, to discard the unnecessary lines as soon as you can. You are doing the loop "check all files for all regexes + discard if all fails". And you could consider instead this: "next unless my first character is '\|' or what I'm expecting, and if not, take a closer look to the rest of the lines. If you are looking exactly for "horse in a meadow" and your first letter is a "p", you don't need to look further. next line.

you can also weed out your file with grep first. Treat first the most common group of lines expected (positives or negatives for your match). Use regexes then for the difficult and rare cases. Complicated regexes are expensive.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-04-19 16:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found