ckj has asked for the wisdom of the Perl Monks concerning the following question:
My table is something like this:use HTML::TableExtract; $te = HTML::TableExtract->new( headers => [qw(Date Price Comments)] ) +; $te->parse($html_string); # Examine all matching tables foreach $ts ($te->tables) { print "Table (", join(',', $ts->coords), "):\n"; foreach $row ($ts->rows) { print join(',', @$row), "\n"; } }
Now the data are coming fine, but I want to read the onclick properties also for each row. so output should be something like this :<table> <tr><td>Date</td><td>Price</td><td>Comments</th></tr> <tr onclcick="dkfjskdjfskfd"><td>21/9</td><td>2324</td><td>abc</td></t +r> <tr onclcick="dkfjskdjfskfd1"><td>21/9</td><td>2324</td><td>abasdasc</ +td></tr> <tr onclcick="dkfjskdjfskfdsdfsdf2"><td>21/9</td><td>2324</td><td>absa +dsadsc</td></tr> </table>
Please advise to include the row properties through HTML::Table::Extractdkfjskdjfskfd, 21/9, 2324, abc dkfjskdjfskfd1, 21/9, 2324, abasdasc dkfjskdjfskfdsdfsdf2, 21/9, 2324, absadsadsc
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to read onclick properties on row of a table using HTML::Table::Extractor ( DOM approach using xsh)
by Anonymous Monk on Aug 28, 2012 at 09:37 UTC | |
|
Re: How to read onclick properties on row of a table using HTML::Table::Extractor
by Anonymous Monk on Aug 28, 2012 at 07:57 UTC | |
|
Re: How to read onclick properties on row of a table using HTML::Table::Extractor
by Anonymous Monk on Aug 27, 2012 at 06:08 UTC |