Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use feature 'say';
    ...
    
    my $ua = Mojo::UserAgent->new;
    say $ua->get('https://www.perlmonks.org')->res->dom->all_text;
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $ua = WWW::Mechanize->new;
    $ua->get('https://perlmonks.org');
    say $ua->content(format => 'text');