Help for this page

Select Code to Download


  1. or download this
    use YAPE::Regex::Explain;
    print YAPE::Regex::Explain->new("A\\B")->explain;
    __END__
    ...
    ----------------------------------------------------------------------
    )                        end of grouping
    ----------------------------------------------------------------------
    
  2. or download this
    use YAPE::Regex::Explain;
    print YAPE::Regex::Explain->new("\\B")->explain;
    ...
    ----------------------------------------------------------------------
    )                        end of grouping
    ----------------------------------------------------------------------
    
  3. or download this
    use re 'debug';
    $x = "A\\B";
    $y = "Here is A\\B";
    ...
                                failed...
    Match failed
    nFreeing REx: `"A\\B"'
    
  4. or download this
    use re 'debug';
    $x = "\\B";
    $y = "Here is \\B";
    ...
       1 <H> <ere is \B>      |  2:  END
    Match successful!
    yFreeing REx: `"\\B"'