DOKK / manpages / debian 12 / libpath-isdev-perl / Path::IsDev::Role::Matcher::Child::BaseName::MatchRegexp::File.3pm.en
Path::IsDev::Role::Matcher::Child::BaseName::MatchRegexp::File(3pm) User Contributed Perl Documentation Path::IsDev::Role::Matcher::Child::BaseName::MatchRegexp::File(3pm)

Path::IsDev::Role::Matcher::Child::BaseName::MatchRegexp::File - Match if any children have basename's that match a regexp and are files

version 1.001003

    $class->child_basename_matchregexp_file( $result_object, $regexp );

Given a regexp $regexp, match if any of "$result_object->path->children" match the given regexp, on the condition that those that match are also files.

    if ( $self->child_basename_matchregexp_file( $result_object, qr/^Change(.*)$/i ) ) {
        # result_object->path() contains at least one child that is a file and matches the regexp
    }

    if ( $class->_this_child_isfile( $result_object, $child_path ) ) {
        ...
    }

Kent Fredric <kentnl@cpan.org>

This software is copyright (c) 2017 by Kent Fredric <kentfredric@gmail.com>.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2022-10-14 perl v5.34.0