in reply to Parsing HTML files to recover data...

I have had great success scraping data out of html files using XML::LibXML. This will parse the html into a DOM tree and allow XPath searches for the data. While this may be overkill both for the learning curve or CPU cycles, the code required for coaxing the data out of the files will be pretty simple. You may also end up with a code that is easily changed to solve any similar problem.
  • Comment on Re: Parsing HTML files to recover data...