Help for this page

Select Code to Download


  1. or download this
    if (($STATUS1 & $STATUS2) =~ m/^Running$/i)
      {
         print "match\n";
      }
    
  2. or download this
    if (($STATUS1 =~ m/^Running$/i) & ($STATUS2 =~ m/^Running$/i))
      {
         print "match\n";
      }