Help for this page

Select Code to Download


  1. or download this
    $_ = "abcde";
    if (/(.)(.)/) { # first two
    ...
      # by your theory, should see first two again
      print "outer: $1 $2\n";
    }
    
  2. or download this
    inner: d e
    outer: d e
    
  3. or download this
    $_ = "abcde";
    if (/(.)(.)/) { # first two
    ...
      # by your theory, should see first two again
      print "outer: $1 $2\n";
    }
    
  4. or download this
    inner: d e
    outer: a b