Help for this page

Select Code to Download


  1. or download this
    $rx = "this|that|those";
    /I want $rx/
    
  2. or download this
    $rx = "this|that|those";
    /I want (?:$rx)/;
    
  3. or download this
    $rx = qr/this|that|those/;
    /I want $rx/;