Help for this page

Select Code to Download


  1. or download this
    $re = qr /begin                # Start with 'begin',
              (?:                  # Followed by
    ...
                |(??{ $re })       #    Or a balanced begin/end block
              )*                   # zero or more times
              end/x;               # And an 'end'.