80degreez has asked for the wisdom of the Perl Monks concerning the following question:
However, I'm not receiving any matches! :(do { my @profiles = $mech->content =~ /\.cf +m?member=(.*)\" class=/g; chomp @profiles; foreach my $parse (@profiles) { if (@profiles){ $numPro++; open (OUT, $proList) || p +rint "cant open profiles file!"; print OUT "$parse\n"; close(OUT); } } $currPage++ ; print "$currPage $numPro\n\n"; } while ( $currPage <= 50 );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Pattern Matching Issues
by graff (Chancellor) on Apr 27, 2007 at 03:23 UTC | |
|
Re: Pattern Matching Issues
by jwkrahn (Abbot) on Apr 27, 2007 at 04:31 UTC | |
|
Re: Pattern Matching Issues
by GrandFather (Saint) on Apr 27, 2007 at 03:20 UTC |