1 package Regexp::Wildcards;
6 use Text::Balanced qw/extract_bracketed/;
10 Regexp::Wildcards - Converts wildcards expressions to Perl regular expressions.
18 our $VERSION = '0.02';
22 use Regexp::Wildcards qw/wc2re/;
25 $re = wc2re 'a{b.,c}*' => 'unix'; # Do it Unix style.
26 $re = wc2re 'a.,b*' => 'win32'; # Do it Windows style.
27 $re = wc2re '*{x,y}.' => 'jokers'; # Process the jokers & escape the rest.
31 In many situations, users may want to specify patterns to match but don't need the full power of regexps. Wildcards make one of those sets of simplified rules. This module converts wildcards expressions to Perl regular expressions, so that you can use them for matching. It handles the C<*> and C<?> jokers, as well as Unix bracketed alternatives C<{,}>, and uses the backspace (C<\>) as an escape character. Wrappers are provided to mimic the behaviour of Windows and Unix shells.
35 Four functions are exported only on request : C<wc2re>, C<wc2re_unix>, C<wc2re_win32> and C<wc2re_jokers>.
39 use base qw/Exporter/;
42 'jokers' => \&wc2re_jokers,
43 'unix' => \&wc2re_unix,
44 'win32' => \&wc2re_win32
48 our @EXPORT_OK = ('wc2re', map { 'wc2re_' . $_ } keys %types);
49 our @EXPORT_FAIL = qw/extract do_jokers do_commas do_brackets do_bracketed/;
50 our %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );
56 This function takes as its only argument the wildcard string to process, and returns the corresponding regular expression according to standard Unix wildcard rules. It successively escapes all unprotected regexp special characters that doesn't hold any meaning for wildcards, turns jokers into their regexp equivalents, and changes bracketed blocks into C<(?:|)> alternations. If brackets are unbalanced, it will try to substitute as many of them as possible, and then escape the remaining C<{> and C<}>. Commas outside of any bracket-delimited block will also be escaped.
58 # This is a valid brackets expression which is correctly handled.
59 print 'ok' if wc2re_unix('{a{b,c}d,e}') eq '(?:a(?:b|c)d|e)';
61 Unbalanced bracket expressions can always be rescued, but it may change completely its meaning. For example :
63 # The first comma is replaced, and the remaining brackets and comma are
65 print 'ok' if wc2re_unix('{a\\{b,c}d,e}') eq '(?:a\\{b|c)d\\,e\\}';
67 # All the brackets and commas are escaped.
68 print 'ok' if wc2re_unix('{a{b,c\\}d,e}') eq '\\{a\\{b\\,c\\}d\\,e\\}';
74 return unless defined $re;
75 $re =~ s/(?<!\\)((?:\\\\)*[^\w\s?*\\\{\},])/\\$1/g;
76 return do_bracketed(do_jokers($re));
81 Similar to the precedent, but for Windows wildcards. Bracketed blocks are no longer handled (which means that brackets will be escaped), but you can provide a comma-separated list of items.
83 # All the brackets are escaped, and commas are seen as list delimiters.
84 print 'ok' if wc2re_win32('{a{b,c}d,e}') eq '(?:\\{a\\{b|c\\}d|e\\})';
90 return unless defined $wc;
91 $wc =~ s/(?<!\\)((?:\\\\)*[^\w\s?*\\,])/\\$1/g;
92 my $re = do_jokers($wc);
93 if ($re =~ /(?<!\\)(?:\\\\)*,/) { # win32 allows comma-separated lists
94 $re = '(?:' . do_commas($re) . ')';
99 =head2 C<wc2re_jokers>
101 This one only handles the C<?> and C<*> jokers. All other unquoted regexp metacharacters will be escaped.
103 # Everything is escaped.
104 print 'ok' if wc2re_jokers('{a{b,c}d,e}') eq '\\{a\\{b\\,c\\}d\\,e\\}';
110 $wc =~ s/(?<!\\)((?:\\\\)*[^\w\s?*\\])/\\$1/g;
111 return do_jokers($wc);
116 A generic function that wraps around all the different rules. The first argument is the wildcard expression, and the second one is the type of rules to apply, currently either C<unix>, C<win32> or C<jokers>. If the type is undefined, it defaults to C<unix>.
121 my ($wc, $type) = @_;
122 return unless defined $wc;
124 return $types{lc $type}($wc);
129 L<Text::Balanced>, which is bundled with perl since version 5.7.3
133 Some modules provide incomplete alternatives as helper functions :
135 L<Net::FTPServer> has a method for that. Only jokers are translated, and escaping won't preserve them.
137 L<File::Find::Match::Util> has a C<wildcar> function that compiles a matcher. Only handles C<*>.
139 L<Text::Buffer> has the C<convertWildcardToRegex> class method that handles jokers.
143 Vincent Pit, C<< <perl at profvince.com> >>
147 Please report any bugs or feature requests to
148 C<bug-regexp-wildcards at rt.cpan.org>, or through the web interface at
149 L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Regexp-Wildcards>.
150 I will be notified, and then you'll automatically be notified of progress on
151 your bug as I make changes.
155 You can find documentation for this module with the perldoc command.
157 perldoc Regexp::Wildcards
159 =head1 COPYRIGHT & LICENSE
161 Copyright 2007 Vincent Pit, all rights reserved.
163 This program is free software; you can redistribute it and/or modify it
164 under the same terms as Perl itself.
168 sub extract { extract_bracketed shift, '{', qr/.*?(?:(?<!\\)(?:\\\\)*)(?={)/; }
172 # escape an odd number of \ that doesn't protect a regexp/wildcard special char
173 s/(?<!\\)((?:\\\\)*\\(?:[\w\s]|$))/\\$1/g;
174 # substitute ? preceded by an even number of \
175 s/(?<!\\)((?:\\\\)*)\?/$1./g;
176 # substitute * preceded by an even number of \
177 s/(?<!\\)((?:\\\\)*)\*+/$1.*/g;
183 # substitute , preceded by an even number of \
184 s/(?<!\\)((?:\\\\)*),/$1|/g;
190 substr $rest, 0, 1, '';
192 my ($re, $bracket, $prefix) = ('');
193 while (($bracket, $rest, $prefix) = extract $rest and $bracket) {
194 $re .= do_commas($prefix) . do_brackets($bracket);
196 $re .= do_commas($rest);
197 return '(?:' . $re . ')';
202 my ($re, $bracket, $prefix) = ('');
203 while (($bracket, $rest, $prefix) = extract $rest and $bracket) {
204 $re .= $prefix . do_brackets($bracket);
207 $re =~ s/(?<!\\)((?:\\\\)*[\{\},])/\\$1/g;
211 1; # End of Regexp::Wildcards