WWW::Search::PubMed::Result - NCBI Search Result
Contents
Copyright
Copyright (c) 2003-2007 Gregory Todd Williams. All rights reserved. This program is free software; you
can redistribute it and/or modify it under the same terms as Perl itself.
Description
WWW::Search::PubMed::Result objects represent query results returned from a WWW::Search::PubMed search.
See WWW::Search:PubMed for more information.
Methods
"abstract"
The article abstract.
"pmid"
The article PMID.
"date"
The article's publication date ("YYYY Mon DD").
"year"
The article's publication year.
"month"
The article's publication month.
"day"
The article's publication day.
Name
WWW::Search::PubMed::Result - NCBI Search Result
Requires
L<WWW::Search::PubMed|WWW::Search::PubMed>
Synopsis
use WWW::Search;
my $s = new WWW::Search ('PubMed');
$s->native_query( 'ACGT' );
while (my $result = $s->next_result) {
print $result->title . "\n";
print $result->description . "\n";
print $result->pmid . "\n";
print $result->abstract . "\n";
}
Version
This document describes WWW::Search::PubMed version 1.004, released 31 October 2007.
