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.


In reply to Re: Extracting string from a file by pvaldes
in thread Extracting string from a file by Bindo

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.