Help for this page
$rx = "this|that|those"; /I want $rx/
$rx = "this|that|those"; /I want (?:$rx)/;
$rx = qr/this|that|those/; /I want $rx/;