Help for this page

Select Code to Download


  1. or download this
    my $regex = join '|', map quotemeta($_), @strings;
    $regex = qr/$regex/;
    
  2. or download this
    /out|this|once|those or|about|bout/
    
    # will work better as
    
    /th(is|ose or)|((a?)b?)out|once/