Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I am going to use this script to fetch my seti@home stats fromuse LWP::Simple; @html=get("http://setiathome.ssl.berkeley.edu/stats/team/team_2414 +.html"); foreach (@html) { $_=~s/\cM//g; $_=~s/<(br|p)>/\n\n/ig; $_=~s/<(?:[^>'"]*|(['"]).*?\1)*>//gs } foreach (@html) { chomp($_); if ($_=~/\bHelmet\b/) { print $_; }else { print "no\n"; } }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: HTML HELP
by lhoward (Vicar) on May 18, 2000 at 01:37 UTC | |
Re: HTML HELP
by chromatic (Archbishop) on May 18, 2000 at 01:55 UTC | |
Re: HTML HELP
by orthanc (Monk) on May 19, 2000 at 18:05 UTC | |
Re: HTML HELP
by Anonymous Monk on May 18, 2000 at 05:12 UTC | |
by chromatic (Archbishop) on May 18, 2000 at 05:22 UTC |