Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    {
        print "matched -->$1<--\n";
    }
    
  2. or download this
    matched -->ThisIsWhatIWant<--
    
  3. or download this
    use YAPE::Regex::Explain;
    
    my $re = qr/#([^?]*)/;
    my $p = YAPE::Regex::Explain->new($re)->explain;
    print "$p\n";
    
  4. or download this
    The regular expression:
    
    ...
    ----------------------------------------------------------------------
    )                        end of grouping
    ----------------------------------------------------------------------