- or download this
my $string = quotemeta @TAGS2;
- or download this
$ perl -wE 'my @x = qw{$ % ^}; my $y = quotemeta @x; say $y'
3
- or download this
$ perl -wE 'my @x = qw{$ % ^}; my @y = map { quotemeta } @x; say "@y"'
\$ \% \^
- or download this
while ( my $text =~ m/ ( .{0,25} $string.{0,25} ) /gisx ) {
- or download this
my $x = ...
- or download this
$x =~ /.../
- or download this
my $text = ...
...
while ($text =~ ...