From: John P. Linderman <jpl@research.att.com>
Date: Fri, 9 Aug 2002 12:48:55 +0000 (-0400)
Subject: Re: missing lower range in {} regex
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b975c0760c1818ba1cb4db218b2fd821cf43e101;p=p5sagit%2Fp5-mst-13.2.git

Re: missing lower range in {} regex
From: "John P. Linderman" <jpl@research.att.com>
Message-ID: <200208091648.MAA77577@raptor.research.att.com>

p4raw-id: //depot/perl@17706
---

diff --git a/pod/perlre.pod b/pod/perlre.pod
index bb52113..5e99fd3 100644
--- a/pod/perlre.pod
+++ b/pod/perlre.pod
@@ -121,7 +121,8 @@ The following standard quantifiers are recognized:
     {n,m}  Match at least n but not more than m times
 
 (If a curly bracket occurs in any other context, it is treated
-as a regular character.)  The "*" modifier is equivalent to C<{0,}>, the "+"
+as a regular character.  In particular, the lower bound
+is not optional.)  The "*" modifier is equivalent to C<{0,}>, the "+"
 modifier to C<{1,}>, and the "?" modifier to C<{0,1}>.  n and m are limited
 to integral values less than a preset limit defined when perl is built.
 This is usually 32766 on the most common platforms.  The actual limit can