X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FRegexp-Wildcards.git;a=blobdiff_plain;f=lib%2FRegexp%2FWildcards.pm;h=0394e9a96ae7d07ddf4fe196e06d9a0b5c61672b;hp=f4be72fc72f884ae92641b3d243e31f0352dbf9e;hb=288bd8baa5fee8ef1407addc316d3d331223cadd;hpb=99cec79018d12958619028d1e21bf7f41eacbd17 diff --git a/lib/Regexp/Wildcards.pm b/lib/Regexp/Wildcards.pm index f4be72f..0394e9a 100644 --- a/lib/Regexp/Wildcards.pm +++ b/lib/Regexp/Wildcards.pm @@ -12,13 +12,13 @@ Regexp::Wildcards - Converts wildcard expressions to Perl regular expressions. =head1 VERSION -Version 1.01 +Version 1.02 =cut use vars qw/$VERSION/; BEGIN { - $VERSION = '1.01'; + $VERSION = '1.02'; } =head1 SYNOPSIS @@ -243,7 +243,7 @@ C<'groups'> keeps the parenthesis C<( ... )> of the original string without esca =item * -C<'anchors'> prevents the beginning-of-line C<^> and end-of-line C<$> anchors to be escaped. Since C<[...]> character class are currently escaped, a C<^> will always be interpreted as such. +C<'anchors'> prevents the I C<^> and I C<$> anchors to be escaped. Since C<[...]> character class are currently escaped, a C<^> will always be interpreted as I. 'a^b$c' ==> (no change)