http://www.perlmonks.org?node_id=872081


in reply to Re: Parsing HTML files
in thread Parsing HTML files

I just want to know how to accomplish this in perl...please given me some tips to start the code

Replies are listed 'Best First'.
Re^3: Parsing HTML files
by ww (Archbishop) on Nov 17, 2010 at 23:07 UTC
    We just did.

    Oh! "to start the code" -- well, that's a different matter.

    We generally recommend starting with a hashbang line and a pair of strictures:

    #!/usr/bin/perl use strict; use warnings; (code goes here)