in reply to Extract hidden values from HTML
HTML::Parser would provide an attributes string which would include the attribute id="row_1_col2" which could in turn be used to build your own hash. As HTML::TableExtract is built on HTML::Parser , the attributes may be available.<table> <tr id="row_1"> <td id="row_1_col_1"> stuff </td> <td id=row_1_col_2"> stuff </td> </tr> <tr id="row_2> ... </table>
print "Good ",qw(night morning afternoon evening)[(localtime)[2]/6]," fellow monks."
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Extract hidden values from HTML
by Unforgiven (Hermit) on Dec 14, 2009 at 14:37 UTC | |
by Anonymous Monk on Dec 15, 2009 at 06:07 UTC |