X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=regcomp.sym;h=1bcdecb48b235c2cd6b343bfaa79fafa65fdfab4;hb=db30010093a0bacd16d1fa3fd1bd5397da6479d3;hp=59284f4b21e253c40c2d7646a50e038078e454cf;hpb=7ea3cd407b6ec2a3e424bdfbc486b6e01d6d28bd;p=p5sagit%2Fp5-mst-13.2.git diff --git a/regcomp.sym b/regcomp.sym index 59284f4..1bcdecb 100644 --- a/regcomp.sym +++ b/regcomp.sym @@ -24,6 +24,7 @@ GPOS GPOS, no Matches where last m//g left off. # [Special] alternatives REG_ANY REG_ANY, no Match any one character (except newline). SANY REG_ANY, no Match any one character. +CANY REG_ANY, no Match any one byte. ANYOF ANYOF, sv Match character in (or not in) this class. ALNUM ALNUM, no Match any alphanumeric character ALNUML ALNUM, no Match any alphanumeric char in locale @@ -59,6 +60,11 @@ EXACT EXACT, sv Match this string (preceded by length). EXACTF EXACT, sv Match this string, folded (prec. by length). EXACTFL EXACT, sv Match this string, folded in locale (w/len). +# Trie Related (behave the same as A|LIST|OF|WORDS would) +TRIE TRIE, trie 1 Match one or more of many EXACT strings +TRIEF TRIE, trie 1 Match one or more of many EXACTF strings +TRIEFL TRIE, trie 1 Match one or more of many EXACTFL strings + # Do nothing NOTHING NOTHING,no Match empty string. # A variant of above which delimits a group, thus stops optimizations