Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Re: for loop to get the 3rd index

by cbro (Pilgrim)
on Jun 06, 2003 at 14:02 UTC ( [id://263671]=note: print w/replies, xml ) Need Help??


in reply to Re: for loop to get the 3rd index
in thread for loop to get the 3rd index

There are some problems with your solution.
1. To get your match into $1, it should be m/(matchingStuff)/. That is, there needs to be parens.

2. Your 'if' statement should be if ($match_count == 3). This is a numerical comparison.
Try this:
my @matches; open (F,"files.txt") || die ("Couldn't open file: $!\n"); while(<F>) { chomp; if (/matchingstffHere/) { push(@matches, $_); } } close(F); if (scalar(@matches) >= 3) { print "Needed = $matches[2].\n"; }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (1)
As of 2024-04-25 00:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found