while($get->content){ if (/<a href=\"(.*)\">/) { print "$1\n"; } }
print $1 while($get->content =~ /<a href=\"(.*)\">/igm);
my @arr = $get->content =~ /<a href=\"(.*)\">/g; print join "\n", @arr;
if ($get->content =~ /<a href=\"(.*)\">/) { print "$1\n"; }
my $a = q[f549ty3945g9h48hg34hg430ghgh4gh3470gh473g5834]; my @b = $a =~ /(\d+)/g; print join "\n", @b; __END__ 549 3945 9 48 34 430 4 3470 473 5834
$req = $ua->get("http://blogs.yandex.ru")->as_string; my $topic= $1 if $req=~/<i class=\"ico\"><\/i>(\w+)</; printf "$topic";
my @topic = $req =~ /<i class="ico\"><\/i>(\w+)</gm; print @topic;