I have two XML documens with the following format:
First document:
<person>
<name>David</name>
</person>
Second document:
<person>
<name>David</name>
<hobby>Skating</hobby>
</person>
Is it possible to copy that second node <hobby>Skating</hobby> into the first XML, if it doesnt already exist? I am using XML::SemanticDiff to find the XPath of the differences and LibXML to append text to changes made in that node:
for my $node ($root->findnodes($path_change)) {
$root->removeChildNodes();
$node->appendText("This is a test");
}