Help for this page

Select Code to Download


  1. or download this
    my $matcher = do
       {
           local $" = q{|};
           qr{(?=(@pairs))};
       };
    
  2. or download this
    $ perl -e '
    > @arr = qw{a b c};
    > print qq{"@arr"\n};'
    "a b c"
    $