input: ------ surnamefirstname surnamefirstname here some text output: ------- surnamefirstname here some text surnamefirstname my $twig = new XML::Twig( pretty_print => 'indented' ); $twig->parse($input); my $pl = XML::Twig::Elt->new("$place"); for ($twig->get_xpath($path)) { $_->cut ; $_->paste('last_child', $pl) ; } $input = $twig->sprint;