Test:
Given a wikipedia page for any movie. Find the name of director of movie.
Learning:
Solution:
use WWW::Mechanize::Link;
use Mojo::DOM;
my $m = WWW::Mechanize->new();
$m->get("http://en.wikipedia.org/wiki/Kal_Ho_Naa_Ho");
$c=$m->content();
(my $a) = $c =~ /Directed by(.*?\/a>)/s;
my $dom = Mojo::DOM->new($a);
print $dom->at('a')->text;

No comments:
Post a Comment