Help for this page

Select Code to Download


  1. or download this
    my $tree = HTML::TreeBuilder->new_from_content($html_file);
    my @links = $tree->extract_links('a');
    
  2. or download this
    use 5.010;
    use warnings;
    ...
    
    # Prove the script worked.
    say "Today's image points to: ".$monksImage[0][0];