Help for this page

Select Code to Download


  1. or download this
    my $regex = do {
        my @escaped;
        push @escaped, quotemeta for @filelist;
        my $joined = join '|', @escaped;
        qr/^(?:$joined)$/;
    };
    
  2. or download this
    my $regex = '^(?:' . join('|', map quotemeta, @filelist) . ')$';