We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee3a518 commit 49cabb5Copy full SHA for 49cabb5
website/docs/language/functions/regex.mdx
@@ -86,7 +86,7 @@ of the pattern must be escaped as `\\`.
86
| `(x)` | unnamed capture group for sub-pattern `x` |
87
| `(?P<name>x)` | named capture group, named `name`, for sub-pattern `x` |
88
| `(?:x)` | non-capturing sub-pattern `x` |
89
-| `\*` | Literal `*` for any punctuation character `*` |
+| `\*` | Literal `*` for any punctuation character `*` For example, `\.` is a literal `.` |
90
| `\Q...\E` | Literal `...` for any text `...` as long as it does not include literally `\E` |
91
92
In addition to the above matching operators that consume the characters they
0 commit comments