Help for this page

Select Code to Download


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