Skip to content

Commit

Permalink
Regex: Document limitations
Browse files Browse the repository at this point in the history
  • Loading branch information
szarnyasg committed Nov 5, 2024
1 parent c5d9b2a commit 5754a5a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/sql/functions/regular_expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,3 +202,8 @@ Binder Error: Not enough group names in regexp_extract

If the number of column names is less than the number of capture groups, then only the first groups are returned.
If the number of column names is greater, then an error is generated.

## Limitations

Regular expressions only support 9 capture groups: `\1`, `\2`, `\3`, ..., `\9`.
Capture groups with two or more digits are not supported.

0 comments on commit 5754a5a

Please sign in to comment.