Help for this page

Select Code to Download


  1. or download this
    $re = "(?:$flags:$core)";
    if($input =~ $re) { ... }
    
  2. or download this
    $re = "(?$flags:$core)";
    if($input =~ $re) { ... }
    
  3. or download this
    $qr = qr/$re/;