Help for this page

Select Code to Download


  1. or download this
    if($info =~ /\Q$string\E/)
    
  2. or download this
    if($info =~ m{^$string$})
    
  3. or download this
    if ($info =~ /$string/)