Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use YAPE::Regex::Explain;
    
    print YAPE::Regex::Explain->new(qr/^(?<!abc)def/)->explain;
    
  2. or download this
    The regular expression:
    
    (?-imsx:^(?<!abc)def)
    ...
    ----------------------------------------------------------------------
    )                        end of grouping
    ----------------------------------------------------------------------