summaryrefslogtreecommitdiff
path: root/regcomp.sym
diff options
context:
space:
mode:
authorLarry Wall <larry@wall.org>1998-07-24 05:44:33 +0000
committerLarry Wall <larry@wall.org>1998-07-24 05:44:33 +0000
commita0ed51b321531af4b47cce24205ab9656f043f0f (patch)
tree610356407b37a4041ea8bcaf44571579b2da5613 /regcomp.sym
parent9332a1c1d80ded85a2b1f32b1c8968a35e3b0fbb (diff)
downloadperl-a0ed51b321531af4b47cce24205ab9656f043f0f.tar.gz
Here are the long-expected Unicode/UTF-8 modifications.
p4raw-id: //depot/utfperl@1651
Diffstat (limited to 'regcomp.sym')
-rw-r--r--regcomp.sym18
1 files changed, 18 insertions, 0 deletions
diff --git a/regcomp.sym b/regcomp.sym
index 9775b9374d..c831bce5c2 100644
--- a/regcomp.sym
+++ b/regcomp.sym
@@ -16,25 +16,43 @@ EOL EOL, no Match "" at end of line.
MEOL EOL, no Same, assuming multiline.
SEOL EOL, no Same, assuming singleline.
BOUND BOUND, no Match "" at any word boundary
+BOUNDUTF8 BOUND, no Match "" at any word boundary
BOUNDL BOUND, no Match "" at any word boundary
+BOUNDLUTF8 BOUND, no Match "" at any word boundary
NBOUND NBOUND, no Match "" at any word non-boundary
+NBOUNDUTF8 NBOUND, no Match "" at any word non-boundary
NBOUNDL NBOUND, no Match "" at any word non-boundary
+NBOUNDLUTF8 NBOUND, no Match "" at any word non-boundary
GPOS GPOS, no Matches where last m//g left off.
# [Special] alternatives
ANY ANY, no Match any one character (except newline).
+ANYUTF8 ANY, no Match any one Unicode character (except newline).
SANY ANY, no Match any one character.
+SANYUTF8 ANY, no Match any one Unicode character.
ANYOF ANYOF, sv Match character in (or not in) this class.
+ANYOFUTF8 ANYOF, sv 1 Match character in (or not in) this class.
ALNUM ALNUM, no Match any alphanumeric character
+ALNUMUTF8 ALNUM, no Match any alphanumeric character
ALNUML ALNUM, no Match any alphanumeric char in locale
+ALNUMLUTF8 ALNUM, no Match any alphanumeric char in locale
NALNUM NALNUM, no Match any non-alphanumeric character
+NALNUMUTF8 NALNUM, no Match any non-alphanumeric character
NALNUML NALNUM, no Match any non-alphanumeric char in locale
+NALNUMLUTF8 NALNUM, no Match any non-alphanumeric char in locale
SPACE SPACE, no Match any whitespace character
+SPACEUTF8 SPACE, no Match any whitespace character
SPACEL SPACE, no Match any whitespace char in locale
+SPACELUTF8 SPACE, no Match any whitespace char in locale
NSPACE NSPACE, no Match any non-whitespace character
+NSPACEUTF8 NSPACE, no Match any non-whitespace character
NSPACEL NSPACE, no Match any non-whitespace char in locale
+NSPACELUTF8 NSPACE, no Match any non-whitespace char in locale
DIGIT DIGIT, no Match any numeric character
+DIGITUTF8 DIGIT, no Match any numeric character
NDIGIT NDIGIT, no Match any non-numeric character
+NDIGITUTF8 NDIGIT, no Match any non-numeric character
+CLUMP CLUMP, no Match any combining character sequence
# BRANCH The set of branches constituting a single choice are hooked
# together with their "next" pointers, since precedence prevents