Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    for ($xpc->findnodes('//xi:include/@href')) {
       say $_->getValue();
    }
    
  2. or download this
    for ($xpc->findnodes('//xi:include')) {
       say $_->getAttribute('href');
    }