Click to See Complete Forum and Search --> : Reading MetaTags


redstar
09-22-2005, 01:09 AM
How to read a metatags of a web page without any perl module?

Nedals
09-22-2005, 11:20 AM
Assuming you want to get metatags from any website, then..
use LWP::UserAgent;
Parse the HTML and extract the <meta.... tags.

But without a Perl module. Why?