hi, i have a little sitesearch script, works fine so far
but i would like to add each pages meta description text
to the search results.
the following is the code i tried, it starts where it should
but does not end with the meta description's '">' but with
the last '">' on that page.
what does it have to look like to make $1 contain the metadesc text only?
if ($string =~ /<meta name=\"description\" content=\"(.*)\">/i)
{$mdesc{$FILE} = "$1";}
any help appreciated :)