Two ideas come to mind. I don't think that either of these
would be spectacularly faster than what you are doing now,
but they may provide some modest improvement.
The following idea relies on you being able to break each line
up into "words" to match against your list. If that is not possible
ignore this suggestion.
read in all the keywords from a file into a hash as keys
get a listing of all the files I want to search into an array,
for each file {
for each line {
for each word in the line {
if word is in hash of wanted words{
log existance of the word
}
}
}
}
You may also be able to get it going faster by putting
all the words into a single regular-expression, compiling the
RE once and then checking each line of each file against that RE.
(this will only work if you want to know if "at least one" of the words is
in a line and don't care exactly which one it was).
read in all the keywords from a file and make them into a regular expr
+ession
get a listing of all the files I want to search into an array,
for each file {
for each line {
if line match RE {
log it
}
}
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|