http://www.perlmonks.org?node_id=202507


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