File::Find::Rule::XPath - rule to match on XPath expressions


File-Find-Rule-XPath documentation  | view source Contained in the File-Find-Rule-XPath distribution.

Index


NAME

Top

File::Find::Rule::XPath - rule to match on XPath expressions

SYNOPSIS

Top

  use File::Find::Rule::XPath;

  my @files = File::Find::Rule->file
              ->name('*.dkb')
              ->xpath( '//section/title[contains(., "Crustacean")]' )
              ->in($root);

DESCRIPTION

Top

This module extends File::Find::Rule to provide the ability to locate XML files which match a given XPath expression.

METHODS

Top

xpath( $xpath_expression )

Matches XML files which contain one or more nodes matching the given XPath expression. Files which are not 'well formed' XML are silently skipped.

If no XPath expression is supplied, the value '/' is used. This will match all files which are well formed XML.

AUTHOR

Top

Grant McLean <grantm@cpan.org>

SEE ALSO

Top

To use this module, you must have File::Find::Rule and one of the following XPath implementations: XML::LibXML or XML::XPath

COPYRIGHT

Top


File-Find-Rule-XPath documentation  | view source Contained in the File-Find-Rule-XPath distribution.