Help for this page

Select Code to Download


  1. or download this
    if ($string =~ /\[message\]/ and $string =~ /\[here\]/ ){ ...
    
  2. or download this
    if (/\[message\]/ and /\[here\]/ ){ ...
    
  3. or download this
    if ($string1 =~ /\[message\]/ and $string2 =~ /\[here\]/ ){ ...