in reply to Hello World!

not much of a japh - but suitably odd for a Sunday.
use LWP::Simple; get('http://perlmonks.org/index.pl?node_id=243219') =~ m|.*<h3 class="other">(.*?)</h3>.*| and print $1;



time was, I could move my arms like a bird and...

Replies are listed 'Best First'.
Re: Re: Hello World!
by valdez (Monsignor) on Mar 17, 2003 at 21:00 UTC

    I prefer to use modules :)

    use LWP::Simple; use XML::Simple; print XMLin(get('http://perlmonks.org/?node_id=37150;nodes=243219'))-> +{NODE}->{content}, "\n";

    Ciao, Valerio