mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-28 04:03:27 -04:00
Document \. for regex function (#37014)
This commit is contained in:
parent
ee3a518fd7
commit
49cabb5788
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ of the pattern must be escaped as `\\`.
|
|||
| `(x)` | unnamed capture group for sub-pattern `x` |
|
||||
| `(?P<name>x)` | 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
|
||||
|
|
|
|||
Loading…
Reference in a new issue