]> git.vpit.fr Git - perl/modules/Regexp-Wildcards.git/blobdiff - samples/wc2re.pl
Switch to qw<>
[perl/modules/Regexp-Wildcards.git] / samples / wc2re.pl
index 49a78909dd0b86fdb7cf4ad5e07ef71df96d6d09..29603163145075ed29a8b2f79bc413006d9be092 100755 (executable)
@@ -3,16 +3,16 @@
 use strict;
 use warnings;
 
-use lib q:../lib/:;
+use lib qw<blib/lib>;
 
-use Regexp::Wildcards qw/wc2re/;
+use Regexp::Wildcards;
+use Data::Dumper;
 
-my $type = (grep $^O eq $_, qw/dos os2 MSWin32 cygwin/) ? 'win32' : 'unix';
-print "For this system, type is $type\n";
-
-{
- local $Regexp::Wildcards::CaptureBrackets = 1;
- local $Regexp::Wildcards::CaptureAny = -1;
- print $_, ' => ', wc2re($_ => $^O), "\n" for @ARGV;
-}
+my $rw = Regexp::Wildcards->new(
+ do      => [ qw<brackets> ],
+ capture => [ qw<single> ],
+);
+$rw->do(add => [ qw<jokers> ]);
+$rw->capture(add => [ qw<brackets any greedy> ]);
 
+print $_, ' => ', $rw->convert($_), "\n" for @ARGV;