|< 1 2 3 >| | 24 Einträge, 3 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl -w
use warnings;
use strict;
use WWW::Mechanize;
my $agent = WWW::Mechanize->new();
$agent -> agent_alias('Linux Mozilla');
#$agent -> agent_alias('Windows Mozilla')
$agent -> get ('http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?CMD=search&DB=pubmed/');
#$agent -> get ('http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=pubmed&cmd=search&term=/');
my $html = $agent -> response()->content;
print "$html";
500 Missing newline after chunk data: XXXXX
http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Search&db=pubmed&term=SIDA
1
2
3
#$agent -> get ('http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?CMD=search&DB=pubmed/');
my $Suchbegriff = 'SIDA';
$agent -> get ('http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Search&db=pubmed&term=' . $Suchbegriff);
1
2
3
4
5
6
7
8
9
10
11
12
use WWW::Search;
my $www_search = new WWW::Search('NCBI::PubMed');
$www_search->maximum_to_retrieve( 10 );
$www_search->native_query( my $query_pubmed = 'estradiol [NM]' );
while ( my $r = $www_search->next_result )
{
print "$_\n" for ( $r->url, $r->title, $r->description );
}
1
2
3
Use of uninitialized value in numeric le (<=) at /usr/lib/perl5/site_perl/5.8.6/WWW/Search.pm line 1211
Use of uninitialized value in numeric le (<=) at /usr/lib/perl5/site_perl/5.8.6/WWW/Search.pm line 1253
Use of uninitialized value in numeric le (<=) at /usr/lib/perl5/site_perl/5.8.6/WWW/Search.pm line 1260
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl -w
use warnings;
use strict;
use WWW::Search;
my $www_search = new WWW::Search('NCBI::PubMed');
$www_search->maximum_to_retrieve( 10 );
$www_search->native_query( my $query_pubmed = 'egf [ALL]' );
while ( my $r = $www_search->next_result ) {
print "$_\n" for ( $r->url, $r->title, $r->description );
}
|< 1 2 3 >| | 24 Einträge, 3 Seiten |