Help for this page

Select Code to Download


  1. or download this
    If($str =~ m/(pattern1)(pattern2)/gi)
      {
      $str = &function($1);
      $var1 = &function($2);
      }
    
  2. or download this
    If($str =~ m/(pattern2)/gi)
      {
      $var1 = &function($1);
      If($str =~ m/(pattern1)pattern2/gi){ $str = &function($1); }
      }