/usr/share/perl5/Regexp/Pattern/Example.pm is in libregexp-pattern-perl 0.1.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | package Regexp::Pattern::Example;
our $DATE = '2016-12-31'; # DATE
our $VERSION = '0.1.4'; # VERSION
# BEGIN_BLOCK: def
our %RE = (
# the minimum spec
re1 => { pat => qr/\d{3}-\d{4}/ },
# more complete spec
re2 => {
summary => 'This is regexp for blah',
description => <<'_',
A longer description.
_
pat => qr/.../,
},
# dynamic (regexp generator)
re3 => {
summary => 'This is a regexp for blah blah',
description => <<'_',
...
_
gen => sub {
my %args = @_;
my $variant = $args{variant} || 'A';
if ($variant eq 'A') {
return qr/\d{3}-\d{3}/;
} else { # B
return qr/\d{3}-\d{2}-\d{5}/;
}
},
gen_args => {
variant => {
summary => 'Choose variant',
schema => ['str*', in=>['A','B']],
default => 'A',
req => 1,
},
},
},
);
# END_BLOCK: def
1;
# ABSTRACT: An example Regexp::Pattern::* module
__END__
=pod
=encoding UTF-8
=head1 NAME
Regexp::Pattern::Example - An example Regexp::Pattern::* module
=head1 VERSION
This document describes version 0.1.4 of Regexp::Pattern::Example (from Perl distribution Regexp-Pattern), released on 2016-12-31.
=head1 SYNOPSIS
use Regexp::Pattern; # exports re()
my $re = re("Example::re1");
=head1 DESCRIPTION
L<Regexp::Pattern> is a convention for organizing reusable regex patterns.
=head1 PATTERNS
=over
=item * re1
=item * re2
This is regexp for blah.
A longer description.
=item * re3
This is a regexp for blah blah.
...
This is a dynamic pattern which will be generated on-demand.
The following arguments are available to customize the generated pattern:
=over
=item * variant
Choose variant.
=back
=back
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/Regexp-Pattern>.
=head1 SOURCE
Source repository is at L<https://github.com/perlancar/perl-Regexp-Pattern>.
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Regexp-Pattern>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 AUTHOR
perlancar <perlancar@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|