[Pcre-svn] [724] code/trunk/doc: Document PCRE/Perl capture …

トップ ページ
このメッセージを削除
著者: Subversion repository
日付:  
To: pcre-svn
題目: [Pcre-svn] [724] code/trunk/doc: Document PCRE/Perl capture diffences in subroutines/ recursions.
Revision: 724
          http://vcs.pcre.org/viewvc?view=rev&revision=724
Author:   ph10
Date:     2011-10-09 17:23:45 +0100 (Sun, 09 Oct 2011)


Log Message:
-----------
Document PCRE/Perl capture diffences in subroutines/recursions.

Modified Paths:
--------------
    code/trunk/doc/pcrecompat.3
    code/trunk/doc/pcrepattern.3


Modified: code/trunk/doc/pcrecompat.3
===================================================================
--- code/trunk/doc/pcrecompat.3    2011-10-08 15:55:23 UTC (rev 723)
+++ code/trunk/doc/pcrecompat.3    2011-10-09 16:23:45 UTC (rev 724)
@@ -81,7 +81,9 @@
 .P
 10. Subpatterns that are called as subroutines (whether or not recursively) are
 always treated as atomic groups in PCRE. This is like Python, but unlike Perl.
-There is a discussion of an example that explains this in more detail in the
+Captured values that are set outside a subroutine call can be reference from
+inside in PCRE, but not in Perl. There is a discussion that explains these
+differences in more detail in the
 .\" HTML <a href="pcrepattern.html#recursiondifference">
 .\" </a>
 section on recursion differences from Perl
@@ -172,6 +174,6 @@
 .rs
 .sp
 .nf
-Last updated: 04 October 2011
+Last updated: 09 October 2011
 Copyright (c) 1997-2011 University of Cambridge.
 .fi


Modified: code/trunk/doc/pcrepattern.3
===================================================================
--- code/trunk/doc/pcrepattern.3    2011-10-08 15:55:23 UTC (rev 723)
+++ code/trunk/doc/pcrepattern.3    2011-10-09 16:23:45 UTC (rev 724)
@@ -2297,8 +2297,8 @@
 .sp
 the value for the inner capturing parentheses (numbered 2) is "ef", which is
 the last value taken on at the top level. If a capturing subpattern is not
-matched at the top level, its final value is unset, even if it is (temporarily)
-set at a deeper level.
+matched at the top level, its final captured value is unset, even if it was
+(temporarily) set at a deeper level during the matching process.
 .P
 If there are more than 15 capturing parentheses in a pattern, PCRE has to
 obtain extra memory to store data during a recursion, which it does by using
@@ -2318,15 +2318,16 @@
 .
 .
 .\" HTML <a name="recursiondifference"></a>
-.SS "Recursion difference from Perl"
+.SS "Differences in recursion processing between PCRE and Perl"
 .rs
 .sp
-In PCRE (like Python, but unlike Perl), a recursive subpattern call is always
-treated as an atomic group. That is, once it has matched some of the subject
-string, it is never re-entered, even if it contains untried alternatives and
-there is a subsequent matching failure. This can be illustrated by the
-following pattern, which purports to match a palindromic string that contains
-an odd number of characters (for example, "a", "aba", "abcba", "abcdcba"):
+Recursion processing in PCRE differs from Perl in two important ways. In PCRE
+(like Python, but unlike Perl), a recursive subpattern call is always treated
+as an atomic group. That is, once it has matched some of the subject string, it
+is never re-entered, even if it contains untried alternatives and there is a
+subsequent matching failure. This can be illustrated by the following pattern,
+which purports to match a palindromic string that contains an odd number of
+characters (for example, "a", "aba", "abcba", "abcdcba"):
 .sp
   ^(.|(.)(?1)\e2)$
 .sp
@@ -2387,6 +2388,21 @@
 PCRE finds the palindrome "aba" at the start, then fails at top level because
 the end of the string does not follow. Once again, it cannot jump back into the
 recursion to try other alternatives, so the entire match fails.
+.P
+The second way in which PCRE and Perl differ in their recursion processing is 
+in the handling of captured values. In Perl, when a subpattern is called 
+recursively or as a subpattern (see the next section), it has no access to any 
+values that were captured outside the recursion, whereas in PCRE these values 
+can be referenced. Consider this pattern:
+.sp
+  ^(.)(\e1|a(?2))
+.sp
+In PCRE, this pattern matches "bab". The first capturing parentheses match "b", 
+then in the second group, when the back reference \e1 fails to match "b", the
+second alternative matches "a" and then recurses. In the recursion, \e1 does
+now match "b" and so the whole match succeeds. In Perl, the pattern fails to
+match because inside the recursive call \e1 cannot access the externally set
+value.
 .
 .
 .\" HTML <a name="subpatternsassubroutines"></a>
@@ -2814,6 +2830,6 @@
 .rs
 .sp
 .nf
-Last updated: 04 October 2011
+Last updated: 09 October 2011
 Copyright (c) 1997-2011 University of Cambridge.
 .fi