From 49cabb57882e39042ebfe94c79534cfd93b5ce1e Mon Sep 17 00:00:00 2001 From: Radek Simko Date: Tue, 13 May 2025 16:33:18 +0100 Subject: [PATCH] Document \. for regex function (#37014) --- website/docs/language/functions/regex.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/language/functions/regex.mdx b/website/docs/language/functions/regex.mdx index 9e18197f98..98edcdf616 100644 --- a/website/docs/language/functions/regex.mdx +++ b/website/docs/language/functions/regex.mdx @@ -86,7 +86,7 @@ of the pattern must be escaped as `\\`. | `(x)` | unnamed capture group for sub-pattern `x` | | `(?Px)` | named capture group, named `name`, for sub-pattern `x` | | `(?:x)` | non-capturing sub-pattern `x` | -| `\*` | Literal `*` for any punctuation character `*` | +| `\*` | Literal `*` for any punctuation character `*` For example, `\.` is a literal `.` | | `\Q...\E` | Literal `...` for any text `...` as long as it does not include literally `\E` | In addition to the above matching operators that consume the characters they