Help for this page

Select Code to Download


  1. or download this
    The regular expression:
    
    ...
    ----------------------------------------------------------------------
    )                        end of grouping
    ----------------------------------------------------------------------
    
  2. or download this
    use warnings;
    use strict;
    ...
    
    print YAPE::Regex::Explain->new($REx)->explain;
    
  3. or download this
    my $REx = 
        qr/
    ...
                  )+                   
              )                        
          /gsx;