Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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"); 
}
share|improve this question
Yes, it is possible. ;) – JWiley Apr 20 '12 at 18:39
@jdwilemo Can you show me how? Not sure how to check whether that node exists – user1322582 Apr 20 '12 at 18:59

1 Answer

up vote 2 down vote accepted
my ($dst_person) = $dst_root->findnodes('//person');
my ($dst_hobby) = $dst_person->findnodes('hobby');
if (!$dst_hobby) {
   my ($src_hobby) = $src_root->findnodes('//person/hobby');
   $dst_person->appendChild( $src_hobby->clone(1) );
}
share|improve this answer
@user1322582, There was a double-bug in my code. (if (() == ...) should have been if (!( () = ... )).) Fixed by using something more readable. – ikegami Apr 20 '12 at 20:15
What if the xml schema structure is unknown? and I want to clone a node using the attribute name for example "some_string" in this format? <name id="some_string"> Is there a way to traverse an XMl document looking for "some_string"? – user1322582 Apr 23 '12 at 14:06
@user1322582, Yes, XPaths can look for attributes. – ikegami Apr 23 '12 at 14:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.