![]() |
![]()
| ![]() |
![]()
NAMEPCRE2 - Perl-compatible regular expressions (revised API) PCRE2 REGULAR EXPRESSION SYNTAX SUMMARYThe full syntax and semantics of the regular expression patterns that are supported by PCRE2 are described in the pcre2pattern documentation. This document contains a quick-reference summary of the pattern syntax followed by the syntax of replacement strings in substitution function. The full description of the latter is in the pcre2api documentation. QUOTING \x where x is non-alphanumeric is a literal x
Note that white space inside \Q...\E is always treated as literal, even if PCRE2_EXTENDED is set, causing most other white space to be ignored. Note also that PCRE2's handling of \Q...\E has some differences from Perl's. See the pcre2pattern documentation for details. BRACED ITEMSWith one exception, wherever brace characters { and } are required to enclose data for constructions such as \g{2} or \k{name}, space and/or horizontal tab characters that follow { or precede } are allowed and are ignored. In the case of quantifiers, they may also appear before or after the comma. The exception is \u{...} which is not Perl-compatible and is recognized only when PCRE2_EXTRA_ALT_BSUX is set. This is an ECMAScript compatibility feature, and follows ECMAScript's behaviour. ESCAPED CHARACTERSThis table applies to ASCII and Unicode environments. An unrecognized escape sequence causes an error.
\N{U+hh..} is synonymous with \x{hh..} but is not supported in environments that use EBCDIC code (mainly IBM mainframes). Note that \N not followed by an opening curly bracket has a different meaning (see below). If PCRE2_ALT_BSUX or PCRE2_EXTRA_ALT_BSUX is set ("ALT_BSUX mode"), the following are also recognized:
When \x is not followed by {, one or two hexadecimal digits are read, but in ALT_BSUX mode \x must be followed by two hexadecimal digits to be recognized as a hexadecimal escape; otherwise it matches a literal "x". Likewise, if \u (in ALT_BSUX mode) is not followed by four hexadecimal digits or (in EXTRA_ALT_BSUX mode) a sequence of hex digits in curly brackets, it matches a literal "u". Note that \0dd is always an octal code. The treatment of backslash followed by a non-zero digit is complicated; for details see the section "Non-printing characters" in the pcre2pattern documentation, where details of escape processing in EBCDIC environments are also given. CHARACTER TYPES . any character except newline;
\C is dangerous because it may leave the current matching point in the middle of a UTF-8 or UTF-16 character. The application can lock out the use of \C by setting the PCRE2_NEVER_BACKSLASH_C option. It is also possible to build PCRE2 with the use of \C permanently disabled. By default, \d, \s, and \w match only ASCII characters, even in UTF-8 mode or in the 16-bit and 32-bit libraries. However, if locale-specific matching is happening, \s and \w may also match characters with code points in the range 128-255. If the PCRE2_UCP option is set, the behaviour of these escape sequences is changed to use Unicode properties and they match many more characters, but there are some option settings that can restrict individual sequences to matching only ASCII characters. Property descriptions in \p and \P are matched caselessly; hyphens, underscores, and ASCII white space characters are ignored, in accordance with Unicode's "loose matching" rules. For example, \p{Bidi_Class=al} is the same as \p{ bidi class = AL }. GENERAL CATEGORY PROPERTIES FOR \p and \P C Other
From release 10.45, when caseless matching is set, Ll, Lu, and Lt are all equivalent to Lc. PCRE2 SPECIAL CATEGORY PROPERTIES FOR \p and \P Xan Alphanumeric: union of properties L and N
Perl and POSIX space are now the same. Perl added VT to its space character set at release 5.18. BINARY PROPERTIES FOR \p AND \PUnicode defines a number of binary properties, that is, properties whose only values are true or false. You can obtain a list of those that are recognized by \p and \P, along with their abbreviations, by running this command:
SCRIPT MATCHING WITH \p AND \PMany script names and their 4-letter abbreviations are recognized in \p{sc:...} or \p{scx:...} items, or on their own with \p (and also \P of course). You can obtain a list of these scripts by running this command:
THE BIDI_CLASS PROPERTY FOR \p AND \P \p{Bidi_Class:<class>} matches a character with the given
class
The recognized classes are:
CHARACTER CLASSES [...] positive character class
In PCRE2, POSIX character set names recognize only ASCII characters by default, but some of them use Unicode properties if PCRE2_UCP is set. You can use \Q...\E inside a character class. When PCRE2_ALT_EXTENDED_CLASS is set, UTS#18 extended character classes may be used, allowing nested character classes, combined using set operators.
PERL EXTENDED CHARACTER CLASSES (?[...]) Perl extended character class
Inside a Perl extended character class, [...] switches mode to be interpreted as an ordinary character class. Outside of a nested [...], the only items permitted are backslash-escapes, POSIX sets, operators, and parentheses. Inside a nested ordinary class, ^ has its usual meaning (inverts the class when used as the first character); outside of a nested class, ^ is the XOR operator. QUANTIFIERS ? 0 or 1, greedy
ANCHORS AND SIMPLE ASSERTIONS \b word boundary
REPORTED MATCH POINT SETTING\K set reported start of match From release 10.38 \K is not permitted by default in lookaround assertions, for compatibility with Perl. However, if the PCRE2_EXTRA_ALLOW_LOOKAROUND_BSK option is set, the previous behaviour is re-enabled. When this option is set, \K is honoured in positive assertions, but ignored in negative ones. ALTERNATIONexpr|expr|expr... CAPTURING (...) capture group
In non-UTF modes, names may contain underscores and ASCII letters and digits; in UTF modes, any Unicode letters and Unicode decimal digits are permitted. In both cases, a name must not start with a digit. ATOMIC GROUPS (?>...) atomic non-capture group
COMMENT(?#....) comment (not nestable) OPTION SETTINGChanges of these options within a group are automatically cancelled at the end of the group.
(?aP) implies (?aT) as well, though this has no additional effect. However, it means that (?-aP) also implies (?-aT) and disables all ASCII restrictions for POSIX classes. Unsetting x or xx unsets both. Several options may be set at once, and a mixture of setting and unsetting such as (?i-x) is allowed, but there may be only one hyphen. Setting (but no unsetting) is allowed after (?^ for example (?^in). An option setting may appear at the start of a non-capture group, for example (?i:...). The following are recognized only at the very start of a pattern or after one of the newline or \R sequences or options with similar syntax. More than one of them may appear. For the first three, d is a decimal number.
Note that LIMIT_DEPTH, LIMIT_HEAP, and LIMIT_MATCH can only reduce the value of the limits set by the caller of pcre2_match() or pcre2_dfa_match(), not increase them. LIMIT_RECURSION is an obsolete synonym for LIMIT_DEPTH. The application can lock out the use of (*UTF) and (*UCP) by setting the PCRE2_NEVER_UTF or PCRE2_NEVER_UCP options, respectively, at compile time. NEWLINE CONVENTIONThese are recognized only at the very start of the pattern or after option settings with a similar syntax.
WHAT \R MATCHESThese are recognized only at the very start of the pattern or after option setting with a similar syntax.
LOOKAHEAD AND LOOKBEHIND ASSERTIONS (?=...) )
Each top-level branch of a lookbehind must have a limit for the number of characters it matches. If any branch can match a variable number of characters, the maximum for each branch is limited to a value set by the caller of pcre2_compile() or defaulted. The default is set when PCRE2 is built (ultimate default 255). If every branch matches a fixed number of characters, the limit for each branch is 65535 characters. NON-ATOMIC LOOKAROUND ASSERTIONSThese assertions are specific to PCRE2 and are not Perl-compatible.
SUBSTRING SCAN ASSERTIONThis feature is not Perl-compatible.
The comma-separated list may identify groups in any of the following ways:
SCRIPT RUNS (*script_run:...) ) script run, can be backtracked into
BACKREFERENCES \n reference by number (can be ambiguous)
SUBROUTINE REFERENCES (POSSIBLY RECURSIVE) (?R) recurse whole pattern
CONDITIONAL PATTERNS (?(condition)yes-pattern)
Note the ambiguity of (?(R) and (?(Rn) which might be named reference conditions or recursion tests. Such a condition is interpreted as a reference condition if the relevant named group exists. BACKTRACKING CONTROLAll backtracking control verbs may be in the form (*VERB:NAME). For (*MARK) the name is mandatory, for the others it is optional. (*SKIP) changes its behaviour if :NAME is present. The others just set a name for passing back to the caller, but this is not a name that (*SKIP) can see. The following act immediately they are reached:
The following act only when a subsequent match failure causes a backtrack to reach them. They all force a match failure, but they differ in what happens afterwards. Those that advance the start-of-match point do so only if the pattern is not anchored.
The effect of one of these verbs in a group called as a subroutine is confined to the subroutine call. CALLOUTS (?C) callout (assumed number 0)
The allowed string delimiters are ` ' " ^ % # $ (which are the same for the start and the end), and the starting delimiter { matched with the ending delimiter }. To encode the ending delimiter within the string, double it. REPLACEMENT STRINGSIf the PCRE2_SUBSTITUTE_LITERAL option is set, a replacement string for pcre2_substitute() is not interpreted. Otherwise, by default, the only special character is the dollar character in one of the following forms:
For ${n}, n can be a name or a number. If PCRE2_SUBSTITUTE_EXTENDED is set, there is additional interpretation: 1. Backslash is an escape character, and the forms described in "ESCAPED CHARACTERS" above are recognized. Also:
2. The Python form \g<n>, where the angle brackets are part of the syntax and n is either a group name or a number, is recognized as an alternative way of inserting the contents of a group, for example \g<3>. 3. Capture substitution supports the following additional forms:
The substitution strings themselves are expanded. Backslash can be used to escape colons and closing curly brackets. SEE ALSOpcre2pattern(3), pcre2api(3), pcre2callout(3), pcre2matching(3), pcre2(3). AUTHORPhilip Hazel Retired from University Computing Service Cambridge, England. REVISIONLast updated: 27 November 2024 Copyright (c) 1997-2024 University of Cambridge.
|