Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Being a heretic and going against the party line.

by blakem (Monsignor)
on Oct 03, 2002 at 13:27 UTC ( [id://202507]=note: print w/replies, xml ) Need Help??


in reply to Being a heretic and going against the party line.

Just for a point of reference, here's how I would have done it.... And I didn't have to look at the HTML source even once.
#!/usr/bin/perl -wT use strict; use HTML::TableExtract; use LWP::Simple; my $te = new HTML::TableExtract(); my $html = get('http://pvpgnservers.ath.cx/') or die; $te->parse($html); for my $row ($te->rows) { print "@$row\n" if $row->[1] eq 'Pure-Dream'; }

-Blake

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (7)
As of 2024-03-28 19:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found