|
NAMEGoogle::Search::ResultDESCRIPTIONAn object represting a result from a Google search (via Google::Search)METHODSThere are a variety of property accessors associated with each result depending which service you use (web, blog, news, local, etc.)For more information, see <http://code.google.com/apis/ajaxsearch/documentation/reference.html#_intro_GResult> For example, a local result has "lat" accessor and "lng" accessor: print $result->uri, " ", $result->title, " at ", $result->lat, " ", $result->lng, "\n"; $result->uriA URI object best representing the location of the result$result->title"Supplies the title value of the result"$result->titleNoFormatting"Supplies the title, but unlike .title, this property is stripped of html markup (e.g., <b>, <i>, etc.)"$result->rankThe position of the result in the search (0-based)$result->previousThe previous result before $result or undef if beyond the first$result->nextThe next result after $result or undef if after the last$result->GsearchResultClass"Indicates the "type" of result"The result class as given by Google
Visit the GSP FreeBSD Man Page Interface. |