in reply to HTML::TokeParser::Simple copying?

Untested - I wonder if this works:

require Clone::PP; push @HTML::TokeParser::Simple::ISA, 'Clone::PP'; # deep copy my $p_blah = $p->clone();

Clone::Any looks interesting too.

Replies are listed 'Best First'.
Re^2: HTML::TokeParser::Simple copying?
by craigmarksmith (Novice) on Nov 23, 2004 at 11:25 UTC
    Monster!!! You da man! Cheers!