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

Re: line by line match on an array of strings

by balaji_red83 (Acolyte)
on Jan 09, 2008 at 09:50 UTC ( [id://661295]=note: print w/replies, xml ) Need Help??


in reply to line by line match on an array of strings

Instead of reading line by line, you can slurp in the contents of the entire file into a scalar variable and then look for a match against an array of strings.
local $/ = undef; open(FH,"<","test.txt") or die "Could not open the file due to $!"; my $fcontent = <FH>; close FH; foreach (@typedefs) { if ($fcontent =~ /$_/){ # perform various actions here if line match } }

Replies are listed 'Best First'.
Re^2: line by line match on an array of strings
by halley (Prior) on Jan 09, 2008 at 14:20 UTC
    Perhaps you missed this in the original post?
      with a few hundred thousand lines to search

    --
    [ e d @ h a l l e y . c c ]

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (7)
As of 2024-04-18 07:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found