Help for this page

Select Code to Download


  1. or download this
    if ($line =~ m/\Q$process\E/i) {
    
  2. or download this
    if (index(lc($line), lc($process)) >= 0)) {
    
  3. or download this
    if ($line =~ m/^\Q$process\E\z/i) {
    
  4. or download this
    if (lc($line) eq lc($process)) {