http://qs321.pair.com?node_id=616449


in reply to html into an array

Not sure exactly what your input/output is, but you might mind HTML::TableExtract very handy as a potential alternate approach to your problem.

Replies are listed 'Best First'.
Re^2: html into an array
by jZed (Prior) on May 20, 2007 at 16:55 UTC
    And if your data is in an HTML table, you can get your array in a single line of AnyData code. AnyData uses both LWP and HTML::TableExtract under the hood:
    use AnyData; my $arrayRef = adConvert( 'HTMLtable', # input is an HTML table 'http://host/path/foo.html', # input comes from a remote file 'ARRAY', # output is an Array reference '', # output not sent to file {count=>1} # HTML::TableExtract flags );