Well now you've been and gone and messed up the system... I'm afraid my puny non-fuzzy logic script only picks out the first node from each person in the thread. This is a fault. I know! I'm sorry! Anybody who has the time / skill to do better than this - let me have it, sibling:
#!/usr/bin/perl -w
use strict;
use CGI qw(:standard :cgi-lib);
use LWP::Simple;
my $url = "http://perlmonks.org/index.pl?node_id=110166";
my $html = get $url or die "could not get $!";
my %names;
while ($html =~ s/=(\d*?)&lastnode_id=110166">[^<]*<\/A><BR> by <A HRE
+F="\/index\.pl\?node_id=\d*&lastnode_id=110166">(.*?)<\/A> on \w{3} \
+d{2}, \d{4} at \d{2}:\d{2}//s) {
$names{$2} = $1 unless $names{$2};
}
update: I notice that demerphq has done this already... as has crazyinsomniac.§ George Sherston
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|