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>" +;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTML::TokeParser Search and remove by ID
by Anonymous Monk on Sep 09, 2014 at 21:45 UTC | |
by djlerman (Beadle) on Sep 09, 2014 at 23:00 UTC | |
by djlerman (Beadle) on Sep 09, 2014 at 23:05 UTC | |
by Anonymous Monk on Sep 10, 2014 at 08:42 UTC |