Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Spider URL while adding

Quote Reply
Spider URL while adding
Just mod my add.pm to spider an url for adding;
problem now is to separate the input.

At the moment i do:

Code:

my @lines = split /\n/, $content;

foreach my $line (@lines) {
if($line =~ /meta name="keywords" /i) {
$keywords = $line;
};

if($line =~ /meta name="description" /i) {
$description = $line;
};
if($line =~ /<title>/i) {
$title = $line;
};
}


Problem with this is code with other format; keywords with two lines or meta name=description instead meta name="description" and one million more ways to write. Any ideas for this?



Sorry, wrong forum, plz move to LSQL ;-)

Last edited by:

Robert: Jun 26, 2005, 5:56 AM