http://www.perlmonks.org?node_id=390848


in reply to Can't locate auto/HTML/TreeBuilder/disembowel.al

@nodes = $root->disembowel() $parent_for_nodes = $root->disembowel()
The disembowel() method works just like the guts() method, except that disembowel definitively destroys the tree above the nodes that are returned. Usually when you want the guts from a tree, you're just going to toss out the rest of the tree anyway, so this saves you the bother. (Remember,``disembowel'' means ``remove the guts from''.)

This is straight from the docs

Replies are listed 'Best First'.
Re^2: Can't locate auto/HTML/TreeBuilder/disembowel.al
by pingo (Hermit) on Sep 14, 2004 at 14:59 UTC
    Thanks, but I am not sure how this relates to my problem?