Is it possible to use XML::XPath module from inside a tag? Please let me know what is wrong with the following coding:#!/usr/iw-home/iw-perl/bin/iwperluse XML::XPath; my $file = 'test.xml';my $sourceXML = XML::XPath->new(filename => $file); foreach my $node ($sourceXML->find('//substitution')->get_nodelist){ $name = $node->find('./@name')->string_value; }Thanks