BioGeek has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use warnings; use LWP; my $R_score = (); my @protein = (); my @R_score_protein = (); $browser = LWP::UserAgent->new(); my $resp = $browser->get(http://www.bork.embl-heidelberg.de +/g2d/list_hits_disease.pl?U57042:Inflammatory_bowel_disease_7); my $content_all = $resp->content(); while ( $content_all =~ m{R\-score<\/A>\s=\s(\d\.\d+)\;}g ) { $R_score = $1; push( @R_score_protein, $R_score );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: regex with variable input
by graff (Chancellor) on Aug 10, 2004 at 04:47 UTC | |
|
Re: regex with variable input
by bradcathey (Prior) on Aug 10, 2004 at 00:10 UTC | |
|
Re: regex with variable input
by spq (Friar) on Aug 10, 2004 at 01:23 UTC | |
|
Re: regex with variable input
by TomDLux (Vicar) on Aug 10, 2004 at 02:12 UTC |