| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Acme::CPANModules::ConvertingToRegex; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
360051
|
use strict; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
179
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
|
6
|
|
|
|
|
|
|
our $DATE = '2023-08-06'; # DATE |
|
7
|
|
|
|
|
|
|
our $DIST = 'Acme-CPANModules-ConvertingToRegex'; # DIST |
|
8
|
|
|
|
|
|
|
our $VERSION = '0.002'; # VERSION |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $LIST = { |
|
11
|
|
|
|
|
|
|
summary => 'List of modules to convert various stuffs to regular expression', |
|
12
|
|
|
|
|
|
|
tags => ['task'], |
|
13
|
|
|
|
|
|
|
entries => [ |
|
14
|
|
|
|
|
|
|
{module=>'Number::Range::Regex', summary=>'from number range'}, |
|
15
|
|
|
|
|
|
|
{module=>'Regex::Range::Number', summary=>'from number range'}, |
|
16
|
|
|
|
|
|
|
{module=>'Regexp::English', summary=>'From a more verbose English specification'}, |
|
17
|
|
|
|
|
|
|
{module=>'Regexp::Shellish', summary=>'From shell wildcard'}, |
|
18
|
|
|
|
|
|
|
{module=>'Regexp::Wildcards', summary=>'From shell wildcard (include Win32 shell)'}, |
|
19
|
|
|
|
|
|
|
{module=>'String::Wildcard::DOS', summary=>'From DOS wildcard'}, |
|
20
|
|
|
|
|
|
|
{module=>'String::Wildcard::SQL', summary=>'From SQL wildcard'}, |
|
21
|
|
|
|
|
|
|
{module=>'String::Wildcard::Bash', summary=>'From Bash wildcard'}, |
|
22
|
|
|
|
|
|
|
], |
|
23
|
|
|
|
|
|
|
}; |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
1; |
|
26
|
|
|
|
|
|
|
# ABSTRACT: List of modules to convert various stuffs to regular expression |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
__END__ |