Help for this page

Select Code to Download


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