Skip to content

Commit 998ba54

Browse files
committed
Update compatibility documentation to explicitly list unsupported regex group types
Added entries for lookahead/lookbehind groups, independent groups, and named capture groups to compatibility.md, clarifying the current limitations of regex support on the GPU. Signed-off-by: Igor Peshansky <ipeshansky@nvidia.com>
1 parent 46447ea commit 998ba54

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

docs/compatibility.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,9 @@ The following regular expression patterns are not yet supported on the GPU and w
507507
- Possessive quantifiers, such as `a*+`
508508
- Character classes that use union, intersection, or subtraction semantics, such as `[a-d[m-p]]`, `[a-z&&[def]]`,
509509
or `[a-z&&[^bc]]`
510+
- Lookahead/lookbehind groups: `(?=a)`, `(?!a)`, `(?<=a)`, `(?<!a)`
511+
- Independent groups: `(?>a)`
512+
- Named capture groups: `(?<n>a)`
510513
- Empty groups: `()`
511514
- Empty pattern: `""`
512515

0 commit comments

Comments
 (0)