I'm trying to convert html to plain text (remove all html tags)
I don't want to use regex so I tried the module HTML::Parser
and tried the parse() function but i got this error
Undefined subroutine &main::start called at getwords.pl line 27.
and as a matter of fact I checked the module's source HTML/Parser.pm and there is no parse function
then I downloaded WWW::Mechanize and I got the same error since WWW::Mechanize uses HTML::Parser parse function
really weird
I already downloaded the source from CPAN (http://search.cpan.org/dist/HTML-Parser/Parser.pm) and the parse function is missing.
What can I do? and why is the funcion missing?