- or download this
use strict;
use warnings;
...
my $empty='';
say "successful //" if ' ' =~ /$empty/;
test();
- or download this
--- run 1
0<>
...
--- run 4
1<x>
2<x>
- or download this
...
for my $tybalt (qw/ () | (?:) g{0}/) {
...
say "successful /$tybalt/" if ' ' =~ /$tybalt/;
test();
}
- or download this
successful /()/
--- run 5
...
0<>
1<>
2<>