Add REGEX non-capturing group note

This commit is contained in:
Marcello 2022-02-16 19:42:10 +01:00
parent c067c7d4b6
commit e25ef7af85

View file

@ -50,7 +50,8 @@ Adding `?` *after* the qualifier makes it perform the match in non-greedy or min
## Groups ## Groups
`(__)` REGEX subgroup `(__)` capturing group
`(?:__)` non-capturing group
`(REGEX_1 | REGEX_2)` match in multiple regex (R1 OR R2) `(REGEX_1 | REGEX_2)` match in multiple regex (R1 OR R2)
`(?=__)` match only if `__` is next substring `(?=__)` match only if `__` is next substring
`(?!__)` match only if `__` is not next substring `(?!__)` match only if `__` is not next substring