summaryrefslogtreecommitdiff
path: root/doc/html/pcre2perform.html
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2019-02-06 18:11:36 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2019-02-06 18:11:36 +0000
commit03c006cfda40d5218d2248674ddc3824f8169897 (patch)
tree8bfb007e8adba8eb8e1256afba09001b52509905 /doc/html/pcre2perform.html
parent2aee0809b4ec6f9c2fdbb33a0c200b17a9fd333c (diff)
downloadpcre2-03c006cfda40d5218d2248674ddc3824f8169897.tar.gz
Allow non-ASCII in group names when UTF is set; revise group naming terminology
in documentation to use "capture group", as Perl does. git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1066 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'doc/html/pcre2perform.html')
-rw-r--r--doc/html/pcre2perform.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/pcre2perform.html b/doc/html/pcre2perform.html
index f823c12..80d716c 100644
--- a/doc/html/pcre2perform.html
+++ b/doc/html/pcre2perform.html
@@ -31,9 +31,9 @@ of them.
Patterns are compiled by PCRE2 into a reasonably efficient interpretive code,
so that most simple patterns do not use much memory for storing the compiled
version. However, there is one case where the memory usage of a compiled
-pattern can be unexpectedly large. If a parenthesized subpattern has a
-quantifier with a minimum greater than 1 and/or a limited maximum, the whole
-subpattern is repeated in the compiled code. For example, the pattern
+pattern can be unexpectedly large. If a parenthesized group has a quantifier
+with a minimum greater than 1 and/or a limited maximum, the whole group is
+repeated in the compiled code. For example, the pattern
<pre>
(abc|def){2,4}
</pre>
@@ -252,9 +252,9 @@ Cambridge, England.
</P>
<br><a name="SEC6" href="#TOC1">REVISION</a><br>
<P>
-Last updated: 25 April 2018
+Last updated: 03 February 2019
<br>
-Copyright &copy; 1997-2018 University of Cambridge.
+Copyright &copy; 1997-2019 University of Cambridge.
<br>
<p>
Return to the <a href="index.html">PCRE2 index page</a>.