http://qs1969.pair.com?node_id=1185453

bigup401 has asked for the wisdom of the Perl Monks concerning the following question:

if i send get request. any idea how i can parse response to print only like <title>Hello</title> prints Hello only

my $req = HTTP::Request->new(GET => 'https://www.google.com'); $req->content_type('application/json'); my $res = $ua->request($req);