ritvik_raj2012 has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: Extracting Xpths from XML schema
by Anonymous Monk on Apr 12, 2012 at 11:45 UTC
    Took me a while but I was able to do it for you
    use XML::Xpath::Extract; my $extractor = XML::Xpath::Extract->new( xsd => ['fileA.xsd','fileB.xsd'] ); my $xpaths = $extractor->extract;
      Thanks for the reply! But I am not able to find that module on CPAN. Could you pls point me to the URL from where I can download this module? Thanks!

Re: Extracting Xpths from XML schema
by Anonymous Monk on Apr 13, 2012 at 01:38 UTC