summaryrefslogtreecommitdiff
path: root/doc/pcre2test.txt
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/pcre2test.txt
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/pcre2test.txt')
-rw-r--r--doc/pcre2test.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/pcre2test.txt b/doc/pcre2test.txt
index a7c8653..dfc5651 100644
--- a/doc/pcre2test.txt
+++ b/doc/pcre2test.txt
@@ -646,14 +646,14 @@ PATTERN MODIFIERS
are some typical examples:
re> /(?i)(^a|^b)/m,info
- Capturing subpattern count = 1
+ Capture group count = 1
Compile options: multiline
Overall options: caseless multiline
First code unit at start or follows newline
Subject length lower bound = 1
re> /(?i)abc/info
- Capturing subpattern count = 0
+ Capture group count = 0
Compile options: <none>
Overall options: caseless
First code unit = 'a' (caseless)
@@ -1214,8 +1214,8 @@ SUBJECT MODIFIERS
The copy and get modifiers can be used to test the pcre2_sub-
string_copy_xxx() and pcre2_substring_get_xxx() functions. They can be
- given more than once, and each can specify a group name or number, for
- example:
+ given more than once, and each can specify a capture group name or num-
+ ber, for example:
abcd\=copy=1,copy=3,get=G1
@@ -1887,5 +1887,5 @@ AUTHOR
REVISION
- Last updated: 12 November 2018
- Copyright (c) 1997-2018 University of Cambridge.
+ Last updated: 03 February 2019
+ Copyright (c) 1997-2019 University of Cambridge.