mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-22875 escape less-than sign in regex.md
This commit is contained in:
parent
7cad791fb6
commit
8e40ed3e78
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ complete a complete description of the API.
|
|||
| `(?! ...)` | Negative look-ahead assertion. True if the parenthesized pattern does not match at the current input position. Does not advance the input position.
|
||||
| `(?<= ...)` | Look-behind assertion. True if the parenthesized pattern matches text preceding the current input position, with the last character of the match being the input character just before the current position. Does not alter the input position. The length of possible strings matched by the look-behind pattern must not be unbounded (no \* or + operators.)
|
||||
| `(?<! ...)` | Negative Look-behind assertion. True if the parenthesized pattern does not match text preceding the current input position, with the last character of the match being the input character just before the current position. Does not alter the input position. The length of possible strings matched by the look-behind pattern must not be unbounded (no \* or + operators.)
|
||||
| `(?<name>...)` | Named capture group. The <angle brackets> are literal - they appear in the pattern.
|
||||
| `(?<name>...)` | Named capture group. The \<angle brackets> are literal - they appear in the pattern.
|
||||
| `(?ismwx-ismwx:...)` | Flag settings. Evaluate the parenthesized expression with the specified flags enabled or -disabled.
|
||||
| `(?ismwx-ismwx)` | Flag settings. Change the flag settings. Changes apply to the portion of the pattern following the setting. For example, (?i) changes to a case insensitive match.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue