logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Path::Dispatcher::Rule::Regex - predicate is a regular expression

Attributes

regex
       The regular expression to match against the path. It works just as you'd expect!

       The capture variables ($1, $2, etc) will be available in the match object as "->pos(1)" etc. "$`", $&,
       and "$'" are not restored.

Author

       Shawn M Moore, "<sartak at bestpractical.com>"

Description

       Rules of this class use a regular expression to match against the path.

Name

       Path::Dispatcher::Rule::Regex - predicate is a regular expression

Support

       Bugs may be submitted through the RT bug tracker <https://rt.cpan.org/Public/Dist/Display.html?Name=Path-
       Dispatcher> (or bug-Path-Dispatcher@rt.cpan.org <mailto:bug-Path-Dispatcher@rt.cpan.org>).

Synopsis

           my $rule = Path::Dispatcher::Rule::Regex->new(
               regex => qr{^/comment(s?)/(\d+)$},
               block => sub { display_comment(shift->pos(2)) },
           );

Version

       version 1.08

See Also