Re: [PATCH - provisional] H. Merijn Brands idea of buffer numbering.
Paul Johnson [Sat, 10 Feb 2007 23:10:31 +0000 (00:10 +0100)]
Message-ID: <20070210221031.GB31280@pjcj.net>

p4raw-id: //depot/perl@30234

pod/perlre.pod

index 5287965..aa861ae 100644 (file)
@@ -716,18 +716,23 @@ X<(?|)> X<Branch reset>
 
 This is the "branch reset" pattern, which has the special property
 that the capture buffers are numbered from the same starting point
-in each branch. 
-
-Normally capture buffers in a pattern are number sequentially, left
-to right in the pattern. Inside of this construct this behaviour is
-overriden so that the captures buffers in each branch share the same
-numbers. The numbering in each branch will be as normal, and any 
-buffers following the use of this pattern will be numbered as though
-the construct contained only one branch, that being the one with the
-most capture buffers in it.
-
-Consider the following pattern. The numbers underneath are which
-buffer number the captured content will be stored in.
+in each branch. It is available starting from perl 5.10.
+
+Normally capture buffers in a pattern are numbered sequentially,
+from left to right.  Inside this construct that behaviour is
+overridden so that the capture buffers are shared between all the
+branches and take their values from the branch that matched.
+
+The numbering within each branch will be as normal, and any buffers
+following this construct will be numbered as though the construct
+contained only one branch, that being the one with the most capture
+buffers in it.
+
+This construct will be useful when you want to capture one of a
+number of alternative matches.
+
+Consider the following pattern.  The numbers underneath show in
+which buffer the captured content will be stored.
 
 
     # before  ---------------branch-reset----------- after