Help for this page

Select Code to Download


  1. or download this
    ($scoretable) = $source =~ m#<span id=linescore>(.*?</table>)#s;
    
  2. or download this
    my $te = HTML::TableExtract->new;
    
    ...
                    print join(',', @$row),"\n";
            }
    }
    
  3. or download this
    Table (0,0):
     ,1,2,3,4,OT,T
    Seattle ,0,0,7,7, ,14
    Oakland ,7,17,14,0, ,38
    
  4. or download this
    my $parsed_table = ($te->table_states)[0];
    my ($team1_scores, $team2_scores) = ($parsed_table->rows)[1,2];
    
  5. or download this
    #!/usr/bin/perl -w
    
    ...
    print Dumper($team1_scores,$team2_scores);
    
    __END__