- or download this
use strict;
use warnings;
...
<!doctype html>
<title lang="en">Example</title>
<table><tr><td xml:lang="en">Hello world</table>
- or download this
my @all_tables = $document->querySelectorAll('table');
my $wanted_table = $table[2];
- or download this
my @all_tables = $document->querySelectorAll('div.foo table');
my $wanted_table = $table[0];
- or download this
my $wanted_table = $document->querySelector('div.foo table');