http://qs321.pair.com?node_id=1100012

djlerman has asked for the wisdom of the Perl Monks concerning the following question:

I have come once again seeking perl wisdom

I am using HTML::TokeParser and this is what I would like to do.

I have read and searched for a solution, but TokeParser seems complex for my simple understanding.

my $parser = HTML::TokeParser->new(\$content); while (my $token=$parser->get_tag("div")) { if($token->[1]{id} =~ /containerID/i) { my $parser1 = HTML::TokeParser->new(\$token->as_is); while (my $token1=$parser1->get_tag("div")) { next if($token1->[1]{id} =~ /removeID/i); $out = ???; } } } var $newContent = "<html><head></head><body>". $out . "</body></head>" +;