mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
Add REGEX non-capturing group note
This commit is contained in:
parent
c067c7d4b6
commit
e25ef7af85
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue