Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^3: Using elements to search a file

by jpearl (Scribe)
on May 06, 2009 at 18:23 UTC ( [id://762350]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Using elements to search a file
in thread Using elements to search a file

That does make sense. However, I think your problem is in this loop:
while ( <$contin> ) { if ( $contractors =~ m/^$string(.*)/ ) { my @results = split(m#\s+#, $1); print br; print @results; } } close( $contin ); }
Specifically I think you're running into a problem at
if ( $contractors =~ m/^$string(.*)/ )
It looks like what you want to be doing is matching every line in $contin against your current $contractor where what you're actually doing is matching $contractor against your regex ^$string(.*) Try changing the above regex in the while loop to have something like
while ( <$contin> ) { if ($_ =~ m/^$contractor(.*)/) { my @results = split(m#\s+#, $1); print br; print @results; } } close( $contin ); }

Replies are listed 'Best First'.
Re^4: Using elements to search a file
by GC (Initiate) on May 06, 2009 at 18:33 UTC
    That gets me a whole lot closer. It's spitting out every line in the file, but at least it's giving me something I can work with.

    Thanks for getting me out of that hole, I appreciate the help.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (8)
As of 2024-04-23 10:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found