Help for this page

Select Code to Download


  1. or download this
      my $re;
      $re = qr{
    ...
              )*
             }x;
       /^$re\z/;
    
  2. or download this
      my $re;
      $re = qr{
              (?:
    ...
           print "$_ did not match\n";
         }
       }
    
  3. or download this
      my $re;
      $re = qr{
    ...
           print "$_ did not match\n";
         }
       }
    
  4. or download this
      my $re;
      $re = qr{
    ...
           print "$_ did not match\n";
         }
       }