Help for this page

Select Code to Download


  1. or download this
    my $rxMatchItems = do { local $" = q{|}; qr{(?:@items)} };
  2. or download this
    my $rxMatchItems = join '|', map quotemeta, @items;
    $rxMatchItems = qr/$rxMatchItems/;