use warnings; use strict; use HTML::TreeBuilder; use Clone qw(clone); use Data::Rmap qw[rmap_scalar]; my $newHTML = ['div', {class => 'ourobject'}, ['script', {language => 'JavaScript', type => 'text/JavaScript'}, 'embedLabTutorClient("VIEW", "URL", WWW, HHH)', ], ['noscript', ['object', {classid=>"CLSID:ReleaseCLSID", width=>'WWW', height=>'HHH', viewastext=>'1'}, ['param', {name=>'ViewSettingsUrl', value=>'URL'}], ['param', {name=>'ViewName', value=>'VIEW'}], ] ] ]; my $objUrl = 'somewhere/object.obj'; my $objView = 'erewhon'; my $objWidth = 255; my $objHeight = 127; my $copy = clone ($newHTML); # Perform 'global' ssubstitutions on $copy here rmap_scalar{ s/WWW/$objWidth/ } $copy; rmap_scalar{ s/HHH/$objHeight/ } $copy; rmap_scalar{ s/VIEW/$objView/ } $copy; rmap_scalar{ s/URL/$objUrl/ } $copy; my $element = HTML::Element->new ('root'); $element->push_content ($copy); print $element->as_HTML(undef, ' ', {}); __END__ c:\test>junk