Thanks for all the help. It works and captures everything EXCEPT
if I have multiple hits on one line it only captures the first one and then thats it for that line.
I need it to capture all hits on the line.
For example the below should give me 5 hits after I run the script:
%ff other%ff
other words%ff
%jj %bb otherstuff here
But my current script only gives me 3 hits because it counts one hit per line.
I need it to count every match on every line.
Please advise how I can get this to work now?
sub rout
{
local *FILE;
if( $_ =~ /\.html?$/)
{
open ( FILE, $name );
while($hit = <FILE>)
{
if( $hit =~ /%(?:ff|jj|bb)/ )
{
print "Hit = $1\n";
}
}
close FILE;
}
}
find( \&rout, "/disk1/disk2" );
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.