in reply to Re^2: How to extract untouched content of html tag with HTML::Parser
in thread How to extract untouched content of html tag with HTML::Parser

It is that easy. You have a logic error. Your start handler, which you call start_handler, does no printing. You text handler does printing, but as documented, the text handler handles text not start tags. Also, your end handler does no printing.
  • Comment on Re^3: How to extract untouched content of html tag with HTML::Parser

Replies are listed 'Best First'.
Re^4: How to extract untouched content of html tag with HTML::Parser
by Lana (Beadle) on Nov 28, 2010 at 17:33 UTC
    OMG!!! I can't believe I was that blind! Thank you very much! :))
      I can believe it, it happens to me every day, usually in between naps and coffee breaks