Computing Staff
  • 1

How To Open .Html File In Perl

  • 1

how to read data from .html file using perl.
i need to capture some data from .html files which was stored in my local desktop

Share

1 Answer

  1. An .html file is just text. Use the normal Perl functions for reading text files. You may want to look at the HTML::Parser module to help parse this data. http://search.cpan.org/dist/HTML-Pa…
    • 0