Help for this page

Select Code to Download


  1. or download this
    grep $_=~$re, ...
    
  2. or download this
    if (/re/     ) { ...a... }
    if ($re      ) { ...b... }
    if (/$re/    ) { ...c... }
    if ($_=~$re  ) { ...d... }
    if ($_=~/$re/) { ...e... }