Help for this page

Select Code to Download


  1. or download this
    while ( <RULE> ) {
      if (/^STMT/.../^STMT/) {
        print unless /^STMT/;
      }
    }
    
  2. or download this
    /^STMT/.../^STMT/ and !/^STMT/ and print while <RULE>;
    __END__
    ...
    C
    Y
    Z
    
  3. or download this
      if (/^STMT\d+=BEGIN/../^STMT\d+=END/)