Help for this page

Select Code to Download


  1. or download this
      my ($caname) = $node->findnodes('./extendedAttributes/attribute');
      print $nodename->to_literal, "\n", "\t", $caname->to_literal, "\t", 
    +"\n"
    
  2. or download this
      my (@canamel) = $node->findnodes('./extendedAttributes/attribute');
      foreach my $caname (@canamel) {
        print $nodename->to_literal, "\n", "\t", $caname->to_literal, "\t"
    +, "\n";
      }